?? ts_attach.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 + -