2 instantiations of SAFEARRAYBOUND
Microsoft.Private.Windows.Core (2)
Windows\Win32\System\Com\SAFEARRAY.cs (1)
28SAFEARRAYBOUND saBound = new()
Windows\Win32\System\Com\SafeArrayScope.cs (1)
120SAFEARRAYBOUND saBound = new()
19 references to SAFEARRAYBOUND
Microsoft.Private.Windows.Core (19)
Windows.Win32.ARRAYDESC.g.cs (2)
36 internal global::Windows.Win32.VariableLengthInlineArray<winmdroot.System.Com.SAFEARRAYBOUND> rgbounds; 43 v +=checked((count - 1) * sizeof(winmdroot.System.Com.SAFEARRAYBOUND));
Windows.Win32.PInvokeCore.OLEAUT32.dll.g.cs (8)
95 /// <inheritdoc cref="SafeArrayCreate(winmdroot.System.Variant.VARENUM, uint, winmdroot.System.Com.SAFEARRAYBOUND*)"/> 96 internal static unsafe winmdroot.System.Com.SAFEARRAY* SafeArrayCreate(winmdroot.System.Variant.VARENUM vt, uint cDims, in winmdroot.System.Com.SAFEARRAYBOUND rgsabound) 98 fixed (winmdroot.System.Com.SAFEARRAYBOUND* rgsaboundLocal = &rgsabound) 114 internal static extern unsafe winmdroot.System.Com.SAFEARRAY* SafeArrayCreate(winmdroot.System.Variant.VARENUM vt, uint cDims, winmdroot.System.Com.SAFEARRAYBOUND* rgsabound); 116 /// <inheritdoc cref="SafeArrayCreateEx(winmdroot.System.Variant.VARENUM, uint, winmdroot.System.Com.SAFEARRAYBOUND*, void*)"/> 117 internal static unsafe winmdroot.System.Com.SAFEARRAY* SafeArrayCreateEx(winmdroot.System.Variant.VARENUM vt, uint cDims, in winmdroot.System.Com.SAFEARRAYBOUND rgsabound, void* pvExtra) 119 fixed (winmdroot.System.Com.SAFEARRAYBOUND* rgsaboundLocal = &rgsabound) 134 internal static extern unsafe winmdroot.System.Com.SAFEARRAY* SafeArrayCreateEx(winmdroot.System.Variant.VARENUM vt, uint cDims, winmdroot.System.Com.SAFEARRAYBOUND* rgsabound, void* pvExtra);
Windows.Win32.SAFEARRAY.g.cs (2)
51 internal global::Windows.Win32.VariableLengthInlineArray<winmdroot.System.Com.SAFEARRAYBOUND> rgsabound; 58 v +=checked((count - 1) * sizeof(winmdroot.System.Com.SAFEARRAYBOUND));
Windows\Win32\System\Com\SAFEARRAY.cs (5)
13/// Gets the <see cref="SAFEARRAYBOUND"/> of the <paramref name="dimension"/>. 15public SAFEARRAYBOUND GetBounds(int dimension = 0) 19return new ReadOnlySpan<SAFEARRAYBOUND>(b, cDims)[dimension]; 28SAFEARRAYBOUND saBound = new() 80ReadOnlySpan<SAFEARRAYBOUND> bounds = new(b, cDims);
Windows\Win32\System\Com\SafeArrayScope.cs (2)
10/// <see cref="PInvokeCore.SafeArrayCreate(VARENUM, uint, SAFEARRAYBOUND*)"/> 120SAFEARRAYBOUND saBound = new()