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

function : only available as an intrinsic function

The #pragma function tries to force the compiler to use a conventional call to a function that must be used in intrinsic form. The pragma is ignored.

To avoid this warning, remove the #pragma function.

Example

#include <malloc.h>
#pragma function(_alloca )   // warning: _alloca() is intrinsic only
void main(){}