Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This function increments the lock count of an array, and places a pointer to the array data in pvDataof the array descriptor.

Syntax

HRESULT SafeArrayLock(
  SAFEARRAY FAR* 
psa 
);

Parameters

psa

[in, out] Pointer to an array descriptor created by SafeArrayCreate.

Return Value

Returns the HRESULT values shown in the following table.

Value Description

S_OK

Success.

E_INVALIDARG

The psaparameter was not a valid safearray descriptor.

E_UNEXPECTED

The array could not be locked.

Remarks

The pointer in the array descriptor is valid until SafeArrayUnlockis called.

Calls to SafeArrayLockcan be nested. An equal number of calls to SafeArrayUnlockare required.

Passing invalid (and under some circumstances NULL) pointers to this function causes an unexpected termination of the application.

An array cannot be deleted while it is locked.

Requirements

Header oleauto.h
Library oleaut32.lib
Windows Embedded CE Windows CE 2.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also