Admin Production ni-theme
Current Publication

CA_SafeArrayTo1DArrayBuf

LabWindows/CVI

CA_SafeArrayTo1DArrayBuf

HRESULT CA_SafeArrayTo1DArrayBuf (LPSAFEARRAY *safeArray, unsigned int arrayType, void *arrayBuffer, size_t bufferSizeInBytes, size_t *numberOfElements);

Purpose

Note    This function has been superseded by CA_SafeArrayTo1DArrayBufEx. The new function takes an additional parameter for options. Calling CA_SafeArrayTo1DArrayBuf is equivalent to passing 0 for the options parameter with CA_SafeArrayTo1DArrayBufEx.

Converts a 1D safe array into a C-style array you pass as a buffer.

Upon success, CA_SafeArrayTo1DArrayBuf frees the safe array and its contents and sets the safe array pointer to NULL.

CA_SafeArrayTo1DArrayBuf returns an error if the buffer is not big enough to hold the array.

Example Code

The following code shows you how to use CA_SafeArrayTo1DArrayBuf:

double dblArray[1024];
LPSAFEARRAY safeArray;
unsigned numElements;
int index;
/* Call an ActiveX function that returns a safe array. */
.
.
.
/* Convert the safe array into a C-style array. */
CA_SafeArrayTo1DArrayBuf (&safeArray, CAVT_DOUBLE, dblArray, sizeof(dblArray), &numElements);
for (index = 0; index < numElements; index++)

printf ("%f", dblArray[index]);

Parameters

Input
Name Type Description
arrayType unsigned int Data type of the array that CA_SafeArrayTo1DArrayBuf creates from the safe array.

arrayType must be the same as the type of the safe array except for the following cases:

  • Creating a C-style array that contains char* elements from a BSTR safe array.
  • Creating a C-style array that contains CAObjHandle elements from an LPDISPATCH safe array.
If you do not know the type of the array, you can call CA_VariantGetType and pass its return value as the type.

arrayType can be any of the fundamental data types for variants, safe arrays, and properties except CAVT_EMPTY or CAVT_NULL.

CA_SafeArrayTo1DArrayBuf ignores the CAVT_ARRAY modifier.
bufferSizeInBytes size_t Number of bytes in the arrayBuffer parameter.
Output
Name Type Description
safeArray LPSAFEARRAY 1D safe array.

Pass the address of the safe array pointer. On success, CA_SafeArrayTo1DArrayBuf frees the safe array and its contents and sets the safe array pointer to NULL.
arrayBuffer void * Buffer to receive the C-style array elements. The type of the array must be the same as arrayType.

If the C-style array contains elements of one of the data types in the following table, use the corresponding function to free each element when you no longer need it.

Data Type Function to Free Each Element
char * CA_FreeMemory
CAObjHandle CA_DiscardObjHandle
BSTR CA_FreeBSTR
LPUNKNOWN array[i]->lpVtbl->Release()
LPDISPATCH array[i]->lpVtbl->Release()
VARIANT CA_VariantClear
Note   CAObjHandles that this function creates do not support multithreading and use LOCALE_NEUTRAL.

To use different values for multithreading support and locale you can call CA_SetSupportForMultithreading and CA_SetLocale to specify the desired values for each CAObjHandle.
numberOfElements size_t Number of elements that CA_SafeArrayTo1DArrayBuf stores in arrayBuffer. You can pass NULL for this parameter.

Return Value

Name Type Description
status HRESULT A value indicating whether an error occurred. Negative error codes indicate function failure.

Error codes are defined in CVIversion\include\cviauto.h and <Program Files>\National Instruments\Shared\MSDTRedistributables\SDKHeaderFiles\8.1\winerror.h. The LabWindows/CVI ActiveX Library explicitly returns error codes. Other error codes in winerror.h are generated by ActiveX servers and passed on to you by the LabWindows/CVI ActiveX Library.

You can use CA_GetAutomationErrorString to get the description of an error code or CA_DisplayErrorInfo to display the description of the error code.

Additional Information

Library: ActiveX Library

Include file: cviauto.h

LabWindows/CVI compatibility: LabWindows/CVI 5.0 and later