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_POLL = 0, 15 DVR_POSE_FREEZE, 16 DVR_POSE_SET_MODE, 17 DVR_POSE_GET_RING_BUFFER, 18 DVR_POSE_NOTIFY_VSYNC, 19 DVR_POSE_GET_MODE, 20 DVR_POSE_GET_CONTROLLER_RING_BUFFER, 21 DVR_POSE_LOG_CONTROLLER, 22 }; 23 24 #ifdef __cplusplus 25 } // extern "C" 26 #endif 27 28 #endif // ANDROID_DVR_POSE_IPC_H_ 29