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
710 B
29 lines
710 B
name: duk_put_global_heapptr
|
|
|
|
proto: |
|
|
duk_bool_t duk_put_global_heapptr(duk_context *ctx, void *ptr);
|
|
|
|
stack: |
|
|
[ ... val! ] -> [ ... ]
|
|
|
|
summary: |
|
|
<p>Like <code><a href="#duk_put_global_string">duk_put_global_string()</a></code>,
|
|
but the property name is given as a Duktape heap pointer obtained e.g. using
|
|
<code><a href="#duk_get_heapptr">duk_get_heapptr()</a></code>. If
|
|
<code>ptr</code> is NULL, <code>undefined</code> is used as the key.</p>
|
|
|
|
example: |
|
|
duk_push_string(ctx, "1.2.3");
|
|
(void) duk_put_global_heapptr(ctx, my_ptr_ref);
|
|
|
|
tags:
|
|
- property
|
|
- borrowed
|
|
- heapptr
|
|
|
|
seealso:
|
|
- duk_put_global_string
|
|
- duk_put_global_lstring
|
|
- duk_put_global_literal
|
|
|
|
introduced: 2.3.0
|
|
|