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 Error C2781

'declaration' : expects at least value1 argument - value2 provided

A function template with a variable parameter list has too few arguments.

Example

template<class T> void f(T, int, ...){ }
f(1); //error

Function f takes two or more parameters, but only one parameter is provided.