შენიშვნა
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ შესვლა ან შეცვალოთ დირექტორიები.
ამ გვერდზე წვდომა მოითხოვს ავტორიზაციას. შეგიძლიათ სცადოთ დირექტორიების შეცვლა.
linkage specification must be at global scope
Remarks
The linkage specifier is declared at local scope.
Example
The following example generates C2598:
// C2598.cpp
// compile with: /c
void func() {
extern "C" int func2(); // C2598
}
extern "C" int func( int i );