git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@4251 626c5289-ae23-0410-ae9c-e8d60b6d4f22
17 lines
299 B
OpenEdge ABL
17 lines
299 B
OpenEdge ABL
// Tests SWIG's *default* handling of varargs. The default behavior is to simply ignore the varargs.
|
|
%module varargs
|
|
|
|
%inline %{
|
|
|
|
char *test(const char *fmt, ...) {
|
|
return (char *) fmt;
|
|
}
|
|
|
|
class Foo {
|
|
public:
|
|
char *test(const char *fmt, ...) {
|
|
return (char *) fmt;
|
|
}
|
|
};
|
|
|
|
%}
|