ChakraJIT.acf 1.3 KB

123456789101112131415161718192021222324252627
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. [
  6. type_strict_context_handle
  7. ]
  8. interface IChakraJIT
  9. {
  10. UpdatePropertyRecordMap([context_handle_noserialize] threadContextInfoAddress);
  11. AddModuleRecordInfo([context_handle_noserialize] scriptContextInfoAddress);
  12. SetWellKnownHostTypeId([context_handle_noserialize] threadContextInfoAddress);
  13. CloseScriptContext([context_handle_noserialize] scriptContextInfoAddress);
  14. FreeAllocation([context_handle_noserialize] scriptContextInfoAddress);
  15. NewInterpreterThunkBlock([context_handle_noserialize] scriptContextInfoAddress);
  16. DecommitInterpreterBufferManager([context_handle_noserialize] scriptContextInfoAddress);
  17. IsNativeAddr([context_handle_noserialize] threadContextInfoAddress);
  18. SetIsPRNGSeeded([context_handle_noserialize] scriptContextInfoAddress);
  19. RemoteCodeGen([context_handle_noserialize] scriptContextInfoAddress);
  20. #if DBG
  21. IsInterpreterThunkAddr([context_handle_noserialize] scriptContextInfoAddress);
  22. #endif
  23. typedef [encode, decode] pCodeGenWorkItemIDL;
  24. }