app_manager_host.h 390 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _APP_MANAGER_HOST_H_
  6. #define _APP_MANAGER_HOST_H_
  7. #include "wasm_export.h"
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. #define HOST_MODE_AON 1
  12. #define HOST_MODE_UART 2
  13. #define HOST_MODE_TEST 3
  14. #ifdef __cplusplus
  15. } /* end of extern "C" */
  16. #endif
  17. #endif