Piezīmes
Lai piekļūtu šai lapai, ir nepieciešama autorizācija. Varat mēģināt pierakstīties vai mainīt direktorijus.
Lai piekļūtu šai lapai, ir nepieciešama autorizācija. Varat mēģināt mainīt direktorijus.
Sets the current script context on the thread.
Syntax
STDAPI_(JsErrorCode) JsSetCurrentContext(
_In_ JsContextRef context
);
Parameters
context
The script context to make current.
Return Value
The code JsNoError if the operation succeeded, a failure code otherwise.
Example
JsRuntimeHandle runtime;
JsContextRef context;
// Create a runtime.
JsCreateRuntime(JsRuntimeAttributeNone, nullptr, &runtime);
// Create an execution context.
JsCreateContext(runtime, &context);
// Now set the current execution context.
JsSetCurrentContext(context);
Requirements
Header: jsrt.h