C4428: Maximum macro arguments for declaration reached

[FATAL]

Description

The preprocessor has reached the maximum number of arguments allowed for a macro declaration.

Example
  #define A(p0, p1, ..., p1023, p1024) (p0+p1+...p1024)

  
Tips

Try to split your macro into two smaller ones.

See also