Ambil perhatian
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba log masuk atau menukar direktori.
Akses ke halaman ini memerlukan kebenaran. Anda boleh cuba menukar direktori.
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