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

📄 ts_open.c

📁 tslib触摸屏校准源代码
💻 C
字号:
/* *  tslib/src/ts_open.c * *  Copyright (C) 2001 Russell King. * * This file is placed under the LGPL.  Please see the file * COPYING for more details. * * $Id: ts_open.c,v 1.4 2004/07/21 19:12:59 dlowder Exp $ * * Open a touchscreen device. */#include "config.h"#include <stdlib.h>#include <string.h>#ifdef HAVE_UNISTD_H#include <unistd.h>#endif#include <sys/fcntl.h>#ifdef USE_INPUT_API#include <linux/input.h>#endif /* USE_INPUT_API */#include "tslib-private.h"extern struct tslib_module_info __ts_raw;struct tsdev *ts_open(const char *name, int nonblock){	struct tsdev *ts;	int flags = O_RDONLY;	if (nonblock)		flags |= O_NONBLOCK;	ts = malloc(sizeof(struct tsdev));	if (ts) {		memset(ts, 0, sizeof(struct tsdev));		ts->fd = open(name, flags);		if (ts->fd == -1)			goto free;	}	return ts;free:	free(ts);	return NULL;}

⌨️ 快捷键说明

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