W8101 Extern C linkage ignored (C++)

From RAD Studio
Jump to: navigation, search

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
}