module_jeff.h 572 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright (C) 2019 Intel Corporation. All rights reserved.
  3. * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. */
  5. #ifndef _MODULE_JEFF_H_
  6. #define _MODULE_JEFF_H_
  7. #include "app_manager.h"
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. extern module_interface jeff_module_interface;
  12. /* sensor event */
  13. typedef struct bh_sensor_event_t {
  14. /* Java sensor object */
  15. void *sensor;
  16. /* event of attribute container from context core */
  17. void *event;
  18. } bh_sensor_event_t;
  19. #ifdef __cplusplus
  20. } /* end of extern "C" */
  21. #endif
  22. #endif /* _MODULE_JEFF_H_ */