-
Notifications
You must be signed in to change notification settings - Fork 1.2k
JsGetDataViewInfo
Kyle Farnung edited this page Jul 31, 2017
·
2 revisions
Obtains frequently used properties of a data view.
STDAPI_(JsErrorCode)
JsGetDataViewInfo(
_In_ JsValueRef dataView,
_Out_opt_ JsValueRef *arrayBuffer,
_Out_opt_ unsigned int *byteOffset,
_Out_opt_ unsigned int *byteLength);
- dataView: The data view instance.
- arrayBuffer: The ArrayBuffer backstore of the view.
- byteOffset: The offset in bytes from the start of arrayBuffer referenced by the view.
- byteLength: The number of bytes in the view.
The code JsNoError if the operation succeeded, a failure code otherwise.
- 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!