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) C4326

return type of 'function' should be 'int' instead of 'type'

A function returned a type other than int. For example, using /Za, main did not return an int.

The following sample generates C4326:

// use /Za
void main() {
// try the following line
// int main() {
}