| Description |
| Extracts the data from an array of ProValues that contains wide-character strings into an array of wide-character strings. |
| Synopsis |
| #include <ProValue.h> |
| ProError | ProValueArrayToWstringArray | ( |
| ProValue* value_array | |
| /*
(In) |
| An array of values. |
| */ |
| int n_values | |
| /*
(In) |
| The number of values in the array. |
| */ |
| wchar_t*** p_wstring_array | |
| /*
(Out) |
| An array of wide-character strings. The function allocates the memory for this array. Use the function ProArrayFree() to free the memory. |
| */ |
| ) |
| Returns |
|
| PRO_TK_NO_ERROR | | The function successfully converted the array of ProValues to an array of strings. |
| PRO_TK_BAD_INPUTS | | One or more of the input arguments are invalid. |
|
| See Also |
| ProArrayFree |