|
Navigation
- Home
- Community
- Development
- myReactOS
- Fundraiser 2012
Doxygen
- Main Page
- Alphabetical List
- Data Structures
- Directories
- File List
- Data Fields
- Globals
- Related Pages
Search
|
#include "config.h"
#include "wine/port.h"
#include <math.h>
#include "jscript.h"
#include "wine/debug.h"
Go to the source code of this file.
Data Structures |
| struct | ErrorInstance |
Functions |
| | WINE_DEFAULT_DEBUG_CHANNEL (jscript) |
| static ErrorInstance * | error_from_vdisp (vdisp_t *vdisp) |
| static ErrorInstance * | error_this (vdisp_t *jsthis) |
| static HRESULT | Error_number (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static HRESULT | Error_description (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static HRESULT | Error_message (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static HRESULT | Error_toString (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *caller) |
| static HRESULT | Error_value (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static void | Error_destructor (DispatchEx *dispex) |
| static HRESULT | alloc_error (script_ctx_t *ctx, DispatchEx *prototype, DispatchEx *constr, ErrorInstance **ret) |
| static HRESULT | create_error (script_ctx_t *ctx, DispatchEx *constr, const UINT *number, const WCHAR *msg, DispatchEx **ret) |
| static HRESULT | error_constr (script_ctx_t *ctx, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, DispatchEx *constr) |
| static HRESULT | ErrorConstr_value (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static HRESULT | EvalErrorConstr_value (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static HRESULT | RangeErrorConstr_value (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static HRESULT | ReferenceErrorConstr_value (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static HRESULT | RegExpErrorConstr_value (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static HRESULT | SyntaxErrorConstr_value (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static HRESULT | TypeErrorConstr_value (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| static HRESULT | URIErrorConstr_value (script_ctx_t *ctx, vdisp_t *jsthis, WORD flags, DISPPARAMS *dp, VARIANT *retv, jsexcept_t *ei, IServiceProvider *sp) |
| HRESULT | init_error_constr (script_ctx_t *ctx, DispatchEx *object_prototype) |
| static HRESULT | throw_error (script_ctx_t *ctx, jsexcept_t *ei, UINT id, const WCHAR *str, DispatchEx *constr) |
| HRESULT | throw_generic_error (script_ctx_t *ctx, jsexcept_t *ei, UINT id, const WCHAR *str) |
| HRESULT | throw_range_error (script_ctx_t *ctx, jsexcept_t *ei, UINT id, const WCHAR *str) |
| HRESULT | throw_reference_error (script_ctx_t *ctx, jsexcept_t *ei, UINT id, const WCHAR *str) |
| HRESULT | throw_regexp_error (script_ctx_t *ctx, jsexcept_t *ei, UINT id, const WCHAR *str) |
| HRESULT | throw_syntax_error (script_ctx_t *ctx, jsexcept_t *ei, UINT id, const WCHAR *str) |
| HRESULT | throw_type_error (script_ctx_t *ctx, jsexcept_t *ei, UINT id, const WCHAR *str) |
| HRESULT | throw_uri_error (script_ctx_t *ctx, jsexcept_t *ei, UINT id, const WCHAR *str) |
Variables |
| static const WCHAR | descriptionW [] = {'d','e','s','c','r','i','p','t','i','o','n',0} |
| static const WCHAR | messageW [] = {'m','e','s','s','a','g','e',0} |
| static const WCHAR | nameW [] = {'n','a','m','e',0} |
| static const WCHAR | numberW [] = {'n','u','m','b','e','r',0} |
| static const WCHAR | toStringW [] = {'t','o','S','t','r','i','n','g',0} |
| static const builtin_prop_t | Error_props [] |
| static const builtin_info_t | Error_info |
| static const builtin_prop_t | ErrorInst_props [] |
| static const builtin_info_t | ErrorInst_info |
Generated on Sun May 27 2012 04:43:31 for ReactOS by
1.7.6.1
|