module_wasm_lib.h 391 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _MODULE_WASM_LIB_H_
  6. #define _MODULE_WASM_LIB_H_
  7. #include "app_manager.h"
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. extern module_interface wasm_lib_module_interface;
  12. #ifdef __cplusplus
  13. } /* end of extern "C" */
  14. #endif
  15. #endif /* _MODULE_WASM_LIB_H_ */