ts_close.c
来自「触摸屏校准的思想及源代码」· C语言 代码 · 共 30 行
C
30 行
/*
* tslib/src/ts_close.c
*
* Copyright (C) 2001 Russell King.
*
* This file is placed under the LGPL. Please see the file
* COPYING for more details.
*
* $Id: ts_close.c,v 1.1.1.1 2001/12/22 21:12:06 rmk Exp $
*
* Close a touchscreen device.
*/
#include "config.h"
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "tslib-private.h"
int ts_close(struct tsdev *ts)
{
int ret;
ret = close(ts->fd);
free(ts);
return ret;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?