C1406: Illegal use of identifierList

[ERROR]

Description

A function prototype declaration had formal parameter names, but no types were provided for the parameters.

Example
  int f(i);  // error

  
Tips

Declare the types for the parameters.