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 _MODULE_JEFF_H_
|
|
|
|
#define _MODULE_JEFF_H_
|
2019-05-07 02:18:18 +00:00
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#include "app_manager.h"
|
2019-05-07 02:18:18 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
extern module_interface jeff_module_interface;
|
|
|
|
|
|
|
|
/* sensor event */
|
|
|
|
typedef struct bh_sensor_event_t {
|
|
|
|
/* Java sensor object */
|
|
|
|
void *sensor;
|
|
|
|
/* event of attribute container from context core */
|
|
|
|
void *event;
|
|
|
|
} bh_sensor_event_t;
|
2019-05-07 02:18:18 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2019-05-17 09:15:25 +00:00
|
|
|
} /* end of extern "C" */
|
2019-05-07 02:18:18 +00:00
|
|
|
#endif
|
|
|
|
|
2019-05-17 09:15:25 +00:00
|
|
|
#endif /* _MODULE_JEFF_H_ */
|