mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
598 B
29 lines
598 B
8 years ago
|
name: duk_get_context_default
|
||
|
|
||
|
proto: |
|
||
|
duk_context *duk_get_context_default(duk_context *ctx, duk_idx_t idx, duk_context *def_value);
|
||
|
|
||
|
stack: |
|
||
|
[ ... val! ... ]
|
||
|
|
||
|
summary: |
|
||
|
<p>Like <code><a href="#duk_get_context">duk_get_context()</a></code>
|
||
|
but with an explicit default value, returned when the value is not a
|
||
|
Duktape thread or the index is invalid.</p>
|
||
|
|
||
|
<div include="default-pointer-validity.html" />
|
||
|
|
||
|
example: |
|
||
|
duk_context *target_ctx;
|
||
|
|
||
|
target_ctx = duk_get_context_default(ctx, 2, default_ctx);
|
||
|
|
||
|
tags:
|
||
|
- stack
|
||
|
- borrowed
|
||
|
|
||
|
seealso:
|
||
|
- duk_get_context
|
||
|
|
||
|
introduced: 2.1.0
|