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 4) C4562

fully prototyped functions are required with the '/com+' switch: converting '()' to '(void)'

Function prototypes should be fully defined when compiling a C source code file using the /com+ compiler option. The compiler automatically converts empty parameter lists to void. The following sample generates C4562:

// compile with /com+ /W4 and /Tc
void main() {   // C4562, use (void) instead of () to resolve
}