unimotion.h

来自「VLC Player Source Code」· C头文件 代码 · 共 59 行

H
59
字号
/* *  UniMotion - Unified Motion detection for Apple portables. * *  Copyright (c) 2006 Lincoln Ramsay. All rights reserved. * *  This library is free software; you can redistribute it and/or *  modify it under the terms of the GNU Lesser General Public *  License version 2.1 as published by the Free Software Foundation. * *  This library is distributed in the hope that it will be useful, *  but WITHOUT ANY WARRANTY; without even the implied warranty of *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU *  Lesser General Public License for more details. * *  You should have received a copy of the GNU Lesser General Public *  License along with this library; if not, write to the Free Software *  Foundation Inc. 59 Temple Place, Suite 330, Boston MA 02111-1307 USA */#ifndef UNIMOTION_H#define UNIMOTION_H#ifdef __cplusplusextern "C" {#endif// The various SMS hardware that unimotion supportsenum sms_hardware {    unknown = 0,    powerbook = 1,    ibook = 2,    highrespb = 3,    macbookpro = 4};// prototypes for the functions in unimotion.c// returns the value of SMS hardware present or unknown if no hardware is detectedint detect_sms();// use the value returned from detect_sms as the type// these functinos return 1 on success and 0 on failure// they modify x, y and z if they are not 0// raw, unmodified valuesint read_sms_raw(int type, int *x, int *y, int *z);// "calibrated" values (same as raw if no calibration data exists)int read_sms(int type, int *x, int *y, int *z);// real (1.0 = 1G) values (requires calibration data)// note that this is the preferred API as it need not change with new machines// however, this API does not work if no "scale" calibration data existsint read_sms_real(int type, double *x, double *y, double *z);#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?