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.
15 lines
512 B
15 lines
512 B
define: DUK_USE_HSTRING_EXTDATA
|
|
feature_enables: DUK_OPT_EXTERNAL_STRINGS
|
|
introduced: 1.1.0
|
|
related_feature_defines:
|
|
- DUK_OPT_EXTERNAL_STRINGS
|
|
default: false
|
|
tags:
|
|
- memory
|
|
description: >
|
|
Enable support for external strings. An external string requires a Duktape
|
|
heap allocation to store a minimal string header, with the actual string
|
|
data being held behind a pointer (similarly to how dynamic buffers work).
|
|
|
|
This option is needed to use DUK_USE_EXTSTR_INTERN_CHECK and/or
|
|
DUK_USE_EXTSTR_FREE.
|
|
|