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

'identifier' : not available as an intrinsic function

The specified function cannot be used as an intrinsic function. The compiler ignores the invalid function name. The following sample generates C4163:

// compile with /W1
#include <math.h>

#pragma intrinsic(mysin)   // C4163

// use the following line to resolve the warning
// #pragma intrinsic(sin)

void main() {
}