Compiler Warning (level 4) C4131

'function' : uses old-style declarator

The specified function declaration is not in prototype form.

Old-style function declarations should be converted to prototype form.

An example of an old-style declaration is:

 int addrec( name, id )
 char *name;
 int id;
 { }

The new-style prototype form is:

 int addrec( char *name, int id )
 { }