Function ProWstringArraySizeSet
Description
Enables you to increase or decrease the size of an array.
NOTE:
Because this call may cause the array to be reallocated, you must pass the address of the array.
Synopsis
#include <ProWstring.h>
ProWstringArraySizeSet
(
ProWstring** p_array
/* (In)
The address of the array whose size should be changed
*/
int size
/* (In)
The new size for the array
*/
)
Returns
The size of the array is less than 0.
The *p_array is NULL.
The function successfully changed the size of the array.
Sample Code References
這是否有幫助?