WabtInterface.h 678 B

123456789101112131415161718192021
  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. #pragma once
  6. #ifdef ENABLE_WABT
  7. namespace Js
  8. {
  9. class WabtInterface
  10. {
  11. public:
  12. class EntryInfo
  13. {
  14. public:
  15. static FunctionInfo ConvertWast2Wasm;
  16. };
  17. static Var EntryConvertWast2Wasm(RecyclableObject* function, CallInfo callInfo, ...);
  18. };
  19. }
  20. #endif