共用方式為


編譯器警告 (層級 1) C4163

'identifier' : 無法當做內建函式使用

指定的函式不能用作為 內建 函式。 編譯器會忽略無效的函式名稱。

下列範例會產生 C4163:

// C4163.cpp
// compile with: /W1 /LD
#include <math.h>
#pragma intrinsic(mysin)   // C4163
// try the following line instead
// #pragma intrinsic(sin)