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 C2567

'identifier' : intrinsic function must have prototype when using C++

The intrinsic function is not prototyped.

Example

#include <string.h>
#pragma intrinsic( abs )     // error, no prototype for abs()
#pragma intrinsic( strcpy )  // OK, prototyped in string.h