'specifier': storage-class 或 type specifier(s) 未預期在這裡;忽視
Example
下列範例會產生 C4518:
// C4518.cpp
// compile with: /c /W1
_declspec(dllexport) extern "C" void MyFunction(); // C4518
extern "C" void MyFunction(); // OK
'specifier': storage-class 或 type specifier(s) 未預期在這裡;忽視
下列範例會產生 C4518:
// C4518.cpp
// compile with: /c /W1
_declspec(dllexport) extern "C" void MyFunction(); // C4518
extern "C" void MyFunction(); // OK