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.
23 lines
522 B
23 lines
522 B
name: duk_require_c_function
|
|
|
|
proto: |
|
|
duk_c_function duk_require_c_function(duk_context *ctx, duk_idx_t idx);
|
|
|
|
stack: |
|
|
[ ... val! ... ]
|
|
|
|
summary: |
|
|
<p>Like <code><a href="#duk_get_c_function">duk_get_c_function()</a></code>, but
|
|
throws an error if the value at <code>idx</code> is not an ECMAScript function
|
|
associated with a Duktape/C function or if the index is invalid.</p>
|
|
|
|
example: |
|
|
duk_c_function funcptr;
|
|
|
|
funcptr = duk_require_c_function(ctx, -3);
|
|
|
|
tags:
|
|
- stack
|
|
- function
|
|
|
|
introduced: 1.0.0
|
|
|