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 C2013

missing '>'

An #include directive lacks a closing angle bracket. Add the closing bracket to resolve the error. The following sample generates C2013:

#include <stdio.h      // C2013
#include <stdio.h>   // ok

void main() {
}