⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 unimotion.h

📁 VLC Player Source Code
💻 H
字号:
/* *  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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -