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

'identifier' : unreferenced formal parameter

The formal parameter is not referenced in the body of the function. The unreferenced parameter is ignored. The following sample generates C4100:

void func(int i) {   // C4100, delete the unreferenced parameter to
//resolve the warning
}

void main() {
    func(1);
}