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
568 B
29 lines
568 B
name: duk_get_heapptr_default
|
|
|
|
proto: |
|
|
void *duk_get_heapptr_default(duk_context *ctx, duk_idx_t idx, void *def_value);
|
|
|
|
stack: |
|
|
[ ... val! ... ]
|
|
|
|
summary: |
|
|
<p>Like <code><a href="#duk_get_heapptr">duk_get_heapptr()</a></code>
|
|
but with an explicit default value, returned when the value is not a
|
|
boolean or the index is invalid.</p>
|
|
|
|
<div include="default-pointer-validity.html" />
|
|
|
|
example: |
|
|
void *ptr;
|
|
|
|
ptr = duk_get_heapptr_default(ctx, 2, default_ptr);
|
|
|
|
tags:
|
|
- stack
|
|
- borrowed
|
|
- heapptr
|
|
|
|
seealso:
|
|
- duk_get_heapptr
|
|
|
|
introduced: 2.1.0
|
|
|