SafeArrayGetLBound function oleaut32
Gets the lower bound for any dimension of the specified safe array.
HRESULT SafeArrayGetLBound(
[in] SAFEARRAY *psa,
[in] UINT nDim,
[out] LONG *plLbound
);
Implementation
int SafeArrayGetLBound(
Pointer<SAFEARRAY> psa,
int nDim,
Pointer<Int32> plLbound,
) => _SafeArrayGetLBound(psa, nDim, plLbound);