Compiler Warning (level 4) C4131 (Windows CE 5.0)

Send Feedback

'function' : uses old-style declarator

The specified function declaration is not in prototype form.

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

 // Old style
 int addrec( name, id )
 char *name;
 int id;
 { }
// New style
 int addrec( char *name, int id )
 { }

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.