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.
12 lines
416 B
12 lines
416 B
define: DUK_USE_HSTRING_EXTDATA
|
|
introduced: 1.1.0
|
|
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.
|
|
|