הערה
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות להיכנס או לשנות מדריכי כתובות.
הגישה לדף זה מחייבת הרשאה. באפשרותך לנסות לשנות מדריכי כתובות.
'method_name' : interface methods cannot take a variable argument list
Remarks
An interface method cannot take a variable argument list.
Example
For example, the following interface definition generates C3120:
// C3120.cpp
__interface A {
int X(int i, ...); // C3120
};
int main(void) { return(0); }