?? tslib-filter.h
字號:
#ifndef _TSLIB_FILTER_H_
#define _TSLIB_FILTER_H_
/*
* tslib/src/tslib-filter.h
*
* Copyright (C) 2001 Russell King.
*
* This file is placed under the LGPL.
*
* $Id: tslib-filter.h,v 1.2 2002/06/17 17:21:43 dlowder Exp $
*
* Internal touch screen library definitions.
*/
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
struct tslib_module_info;
struct tsdev;
struct tslib_vars {
const char *name;
void *data;
int (*fn)(struct tslib_module_info *inf, char *str, void *data);
};
struct tslib_ops {
int (*read)(struct tslib_module_info *inf, struct ts_sample *samp, int nr);
int (*fini)(struct tslib_module_info *inf);
};
struct tslib_module_info {
struct tsdev *dev;
struct tslib_module_info *next; /* next module in chain */
void *handle; /* dl handle */
const struct tslib_ops *ops;
};
extern int tslib_parse_vars(struct tslib_module_info *,
const struct tslib_vars *, int,
const char *);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* _TSLIB_FILTER_H_ */
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -