W8101 Extern C linkage ignored (C++)
Go Up to Compiler Errors And Warnings (C++) Index
This occurs when declaring a function or method to have external C-style linkage and then using another directive that overrides this behavior.
extern "C"
{
int foo();
static int bar(); //W8101
}