What\'s the purpose of ANYSIZE_ARRAY, located in WinNT.h?
ANYSIZE_ARRAY
I see an MSDN blog post about it from 2004 but it doesn\'t make sense to me.
From this page:
In C, a variable-size array is declared as a[1] or a[ANYSIZE_ARRAY], where ANYSIZE_ARRAY is defined as 1. Then it is used as if it were bigger.
a[1]
a[ANYSIZE_ARRAY]
1