+ merging of js/src and js/ref + elimination of most dependencies on NSPR + JS1.4 feature additions and accumulated bug fixes More details are in last week's mozilla status report. git-svn-id: svn://10.0.0.236/trunk@12797 18797224-902f-48f8-a5cc-f745e15eee43
21 lines
408 B
C
21 lines
408 B
C
/* -*- Mode: C; tab-width: 8 -*-
|
|
* Copyright © 1996 Netscape Communications Corporation, All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef jsaddr_h___
|
|
#define jsaddr_h___
|
|
|
|
JS_EXTERN_API(JSPropertyOp)
|
|
js_GetArgumentAddress();
|
|
|
|
JS_EXTERN_API(JSPropertyOp)
|
|
js_SetArgumentAddress();
|
|
|
|
JS_EXTERN_API(JSPropertyOp)
|
|
js_GetLocalVariableAddress();
|
|
|
|
JS_EXTERN_API(JSPropertyOp)
|
|
js_SetLocalVariableAddress();
|
|
|
|
#endif /* jsaddr_h___ */
|