16 references to SafeArrayCreate
System.Private.Windows.Core (5)
Windows.Win32.PInvokeCore.OLEAUT32.dll.g.cs (2)
95 /// <inheritdoc cref="SafeArrayCreate(winmdroot.System.Variant.VARENUM, uint, winmdroot.System.Com.SAFEARRAYBOUND*)"/> 100 winmdroot.System.Com.SAFEARRAY* __result = PInvokeCore.SafeArrayCreate(vt, cDims, rgsaboundLocal);
Windows\Win32\System\Com\SAFEARRAY.cs (1)
35return PInvokeCore.SafeArrayCreate(arrayType, 1, &saBound);
Windows\Win32\System\Com\SafeArrayScope.cs (2)
11/// <see cref="PInvokeCore.SafeArrayCreate(VARENUM, uint, SAFEARRAYBOUND*)"/> 127_value = (nint)PInvokeCore.SafeArrayCreate(vt, 1, &saBound);
System.Windows.Forms.Primitives (2)
Windows\Win32\System\Com\ComSafeArrayScope.cs (2)
10/// <see cref="PInvokeCore.SafeArrayCreate(VARENUM, uint, SAFEARRAYBOUND*)"/> 41_value = new(PInvokeCore.SafeArrayCreate(VARENUM.VT_UNKNOWN, 1, &saBound));
System.Windows.Forms.Primitives.Tests (9)
Interop\Oleaut32\SAFEARRAYTests.cs (6)
60SAFEARRAY* psa = PInvokeCore.SafeArrayCreate((VARENUM)vt, 1, &saBound); 185SAFEARRAY* psa = PInvokeCore.SafeArrayCreate((VARENUM)vt, 2, saBounds); 221SAFEARRAY* psa = PInvokeCore.SafeArrayCreate(VT_I4, 1, &saBound); 268SAFEARRAY* psa = PInvokeCore.SafeArrayCreate(VT_I4, 1, &saBound); 322SAFEARRAY* psa = PInvokeCore.SafeArrayCreate(VT_I4, 2, saBounds); 376SAFEARRAY* psa = PInvokeCore.SafeArrayCreate(VT_I4, 2, saBounds);
Interop\Oleaut32\VARIANTTests.cs (3)
5399SAFEARRAY* psa = PInvokeCore.SafeArrayCreate(VT_I4, (uint)rank, saBounds); 5420SAFEARRAY* psa = PInvokeCore.SafeArrayCreate(vt, 1, &saBound); 5459SAFEARRAY* psa = PInvokeCore.SafeArrayCreate(vt, 2, saBounds);