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

passing constant zero as the length to memset

You called the C run-time library’s memset function with a zero character length. For example, memset(p,size,0). Instead, specify memset(p,0,size).