typedef struct tagSAFEARRAYBOUND
{
ULONG cElements;
LONG lLbound;
} SAFEARRAYBOUND;
描述一个维在数组(可能为多维)上的(起始和数量)范围,lLbound标示此维在数组的开始点,cElements标示此维元素的数量。
(Represents the bounds of one dimension of the array. The lower bound of the dimension is represented by lLbound , and cElements represents the number of elements in the dimension.)
本文介绍了 SAFEARRAYBOUND 结构的定义及用途。该结构用于描述数组中某一维度的边界范围,包括维度的起始位置(lLbound)和元素数量(cElements)。SAFEARRAYBOUND 常用于多维数组的定义。
2万+

被折叠的 条评论
为什么被折叠?



