diff options
Diffstat (limited to 'Include/methodobject.h')
-rw-r--r-- | Include/methodobject.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Include/methodobject.h b/Include/methodobject.h index 5799a18..178bdfb 100644 --- a/Include/methodobject.h +++ b/Include/methodobject.h @@ -5,8 +5,8 @@ extern "C" { #endif /*********************************************************** -Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum, -Amsterdam, The Netherlands. +Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam, +The Netherlands. All Rights Reserved @@ -49,6 +49,10 @@ struct methodlist { extern object *findmethod PROTO((struct methodlist *, object *, char *)); +/* Flag passed to newmethodobject */ +#define METH_VARARGS 0x0001 +#define METH_FREENAME 0x0100 + #ifdef __cplusplus } #endif |