I was doing some studying of the windows header files and I came upon a preprocessor statement that I didn't recognize. I've been searching for any information on this statement for about a week and I can't find any information on it anywhere. I'm not sure if it's just not a search engine friendly phrase or if there really isn't much on the web about it. I've found a couple uses of this preprocessor in the MS header files.
Here is an example from this page:
typedef struct _SID {
BYTE Revision;
BYTE SubAuthorityCount;
SID_IDENTIFIER_AUTHORITY IdentifierAuthority;
#if ...
DWORD * SubAuthority[];
#else
DWORD SubAuthority[ANYSIZE_ARRAY];
#endif
} SID, *PSID;
Note: I'm asking specifically about #if ..., with an ellipsis.
Can someone please elaborate what the preprocessor #if ... does? Any help would be greatly appreciated.