NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Warning (level 1) C4219

nonstandard extension used : trailing ',' used for variable argument list

An argument list ends with a comma. The compiler assumes that it is a variable argument list with the ellipsis accidentally left off.

Example

int func1( int first, );       // warning
int func2( int first, ... );   // OK