rogerl%netscape.com 8b9ff13013 Incremental Shamu updates
git-svn-id: svn://10.0.0.236/trunk@117679 18797224-902f-48f8-a5cc-f745e15eee43
2002-03-28 18:56:04 +00:00

20 lines
496 B
C

typedef struct JSStackFrame JSStackFrame;
typedef struct JSPropertyDescArray JSPropertyDescArray;
#ifdef JS_ARGUMENT_FORMATTER_DEFINED
/*
* Linked list mapping format strings for JS_{Convert,Push}Arguments{,VA} to
* formatter functions. Elements are sorted in non-increasing format string
* length order.
*/
struct JSArgumentFormatMap {
const char *format;
size_t length;
JSArgumentFormatter formatter;
JSArgumentFormatMap *next;
};
#endif