1# IMotionCallback 2 3 4## **概述** 5 6定义上报手势识别数据回调函数。 7 8手势识别用户在订阅手势识别数据时需要注册这个回调函数,只有当使能手势识别后,手势识别数据用户才会收到手势识别数据。 详情可参考[IMotionInterface](interface_i_motion_interface.md)。 9 10**Since:** 11 123.2 13 14**相关模块:** 15 16[Motion](motion.md) 17 18 19## **汇总** 20 21 22### Public 成员函数 23 24 | 名称 | 描述 | 25| -------- | -------- | 26| [OnDataEvent](#ondataevent) ([in] struct [HdfMotionEvent](_hdf_motion_event.md) event) | 定义上报手势识别数据回调函数。 | 27 28 29## **成员函数说明** 30 31 32### OnDataEvent() 33 34 35``` 36IMotionCallback::OnDataEvent ([in] struct HdfMotionEvent event) 37``` 38 39**描述:** 40 41定义上报手势识别数据回调函数。 42 43**参数:** 44 45 | 名称 | 描述 | 46| -------- | -------- | 47| event | 回调函数上报的数据。详见[HdfMotionEvent](_hdf_motion_event.md)。 | 48 49**返回:** 50 51如果回调函数上报数据成功,则返回0。 52 53如果回调函数上报数据失败,则返回负值。 54