2019-05-07 02:18:18 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2019 Intel Corporation. All rights reserved.
|
2019-11-11 23:45:21 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2019-05-07 02:18:18 +00:00
|
|
|
*/
|
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#ifndef _APP_MANAGER_HOST_H_
|
|
|
|
#define _APP_MANAGER_HOST_H_
|
2019-05-07 02:18:18 +00:00
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#include "wasm_export.h"
|
2019-05-07 02:18:18 +00:00
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define HOST_MODE_AON 1
|
|
|
|
#define HOST_MODE_UART 2
|
|
|
|
#define HOST_MODE_TEST 3
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* end of extern "C" */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
2019-05-07 02:18:18 +00:00
|
|
|
|