-
Notifications
You must be signed in to change notification settings - Fork 1.2k
JsPointerToString
Limin Zhu edited this page Mar 14, 2017
·
2 revisions
Creates a string value from a string pointer.
STDAPI_(JsErrorCode)
JsPointerToString(
_In_reads_(stringLength) const wchar_t *stringValue,
_In_ size_t stringLength,
_Out_ JsValueRef *value);
- stringValue: The string pointer to convert to a string value.
- stringLength: The length of the string to convert.
- value: The new string value.
The code JsNoError if the operation succeeded, a failure code otherwise.
This API is Windows-only (see JsCreateString/JsCreateStringUtf16 for cross-platform equivalent). Requires an active script context.
- Architecture Overview
- Building ChakraCore
- ChakraCore Code Structure
- Contributor Guidance
- Engineering Notes
- Embedding ChakraCore
- Testing ChakraCore
- Getting ChakraCore binaries
- Label Glossary
- Resources
- Roadmap / Release Notes
Want to contribute to this Wiki? Fork it and send a pull request!