gui_api.h 687 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _GUI_API_H_
  6. #define _GUI_API_H_
  7. #include "bh_platform.h"
  8. #include "bi-inc/wgl_shared_utils.h"
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. void
  13. wasm_obj_native_call(int32 func_id, uint32 *argv, uint32 argc);
  14. void
  15. wasm_btn_native_call(int32 func_id, uint32 *argv, uint32 argc);
  16. void
  17. wasm_label_native_call(int32 func_id, uint32 *argv, uint32 argc);
  18. void
  19. wasm_cb_native_call(int32 func_id, uint32 *argv, uint32 argc);
  20. void
  21. wasm_list_native_call(int32 func_id, uint32 *argv, uint32 argc);
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25. #endif /* end of _GUI_API_H_ */