1 #ifndef ANDROID_DVR_POSE_IPC_H_ 2 #define ANDROID_DVR_POSE_IPC_H_ 3 4 #include <stdint.h> 5 6 #ifdef __cplusplus 7 extern "C" { 8 #endif 9 10 #define DVR_POSE_SERVICE_BASE "system/vr/pose" 11 #define DVR_POSE_SERVICE_CLIENT (DVR_POSE_SERVICE_BASE "/client") 12 13 enum { 14 DVR_POSE_FREEZE = 0, 15 DVR_POSE_SET_MODE, 16 DVR_POSE_GET_MODE, 17 DVR_POSE_GET_CONTROLLER_RING_BUFFER, 18 DVR_POSE_LOG_CONTROLLER, 19 DVR_POSE_SENSORS_ENABLE, 20 DVR_POSE_GET_TANGO_READER, 21 DVR_POSE_DATA_CAPTURE, 22 DVR_POSE_TANGO_READER_DESTROY, 23 }; 24 25 #ifdef __cplusplus 26 } // extern "C" 27 #endif 28 29 #endif // ANDROID_DVR_POSE_IPC_H_ 30