You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function fb_ArrayRedimObj cdecl ( array as FBARRAY ptr, element_len as size_t, ctor as FB_DEFCTOR, dtor as FB_DEFCTOR,dimensions as size_t, ... ) as long
dim as va_list ap
dim as long res
/' free old '/
if ( dtor ) then
fb_ArrayDestructObj( array, dtor )
end if
fb_ArrayErase( array, 0 )
'va_start( ap, dimensions )
ap = va_first()
/' Have to assume doclear=TRUE, because we have no doclear parameter here,
and don't know what to do, so better be safe. '/
res = fb_hArrayAlloc( array, element_len, TRUE, ctor, dimensions, ap )