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

📄 ts_attach.c

📁 是一个触摸屏的库,它提供诸如去抖/滤波/校准之类的功能,为不同的触摸屏提供了统一的接口.
💻 C
字号:
/* *  tslib/src/ts_attach.c * *  Copyright (C) 2001 Russell King. * * This file is placed under the LGPL.  Please see the file * COPYING for more details. * * $Id: ts_attach.c,v 1.1.1.1 2001/12/22 21:12:06 rmk Exp $ * * Attach a filter to a touchscreen device. */#include "config.h"#include "tslib-private.h"int __ts_attach(struct tsdev *ts, struct tslib_module_info *info){	info->dev = ts;	info->next = ts->list;	ts->list = info;	return 0;}

⌨️ 快捷键说明

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