tslib.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:2k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. #ifndef _TSLIB_H_
  2. #define _TSLIB_H_
  3. /*
  4.  *  tslib/src/tslib.h
  5.  *
  6.  *  Copyright (C) 2001 Russell King.
  7.  *
  8.  * This file is placed under the LGPL.
  9.  *
  10.  * $Id: tslib.h,v 1.4 2005/02/26 01:47:23 kergoth Exp $
  11.  *
  12.  * Touch screen library interface definitions.
  13.  */
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif /* __cplusplus */
  17. #include <stdarg.h>
  18. #include <sys/time.h>
  19. #ifdef WIN32
  20.   #define TSIMPORT __declspec(dllimport)
  21.   #define TSEXPORT __declspec(dllexport)
  22.   #define TSLOCAL
  23. #else
  24.   #define TSIMPORT
  25.   #ifdef GCC_HASCLASSVISIBILITY
  26.     #define TSEXPORT __attribute__ ((visibility("default")))
  27.     #define TSLOCAL __attribute__ ((visibility("hidden")))
  28.   #else
  29.     #define TSEXPORT
  30.     #define TSLOCAL
  31.   #endif
  32. #endif
  33. #ifdef TSLIB_INTERNAL
  34.   #define TSAPI TSEXPORT
  35. #else
  36.   #define TSAPI TSIMPORT
  37. #endif // TSLIB_INTERNAL
  38. struct tsdev;
  39. struct ts_sample {
  40. int x;
  41. int y;
  42. unsigned int pressure;
  43. struct timeval tv;
  44. };
  45. /*
  46.  * Close the touchscreen device, free all resources.
  47.  */
  48. TSAPI int ts_close(struct tsdev *);
  49. /*
  50.  * Configure the touchscreen device.
  51.  */
  52. TSAPI int ts_config(struct tsdev *);
  53. /*
  54.  * Change this hook to point to your custom error handling function.
  55.  */
  56. extern TSAPI int (*ts_error_fn)(const char *fmt, va_list ap);
  57. /*
  58.  * Returns the file descriptor in use for the touchscreen device.
  59.  */
  60. TSAPI int ts_fd(struct tsdev *);
  61. /*
  62.  * Load a filter/scaling module
  63.  */
  64. TSAPI int ts_load_module(struct tsdev *, const char *mod, const char *params);
  65. /*
  66.  * Open the touchscreen device.
  67.  */
  68. TSAPI struct tsdev *ts_open(const char *dev_name, int nonblock);
  69. /*
  70.  * Return a scaled touchscreen sample.
  71.  */
  72. TSAPI int ts_read(struct tsdev *, struct ts_sample *, int);
  73. /*
  74.  * Returns a raw, unscaled sample from the touchscreen.
  75.  */
  76. TSAPI int ts_read_raw(struct tsdev *, struct ts_sample *, int);
  77. #ifdef __cplusplus
  78. }
  79. #endif /* __cplusplus */
  80. #endif /* _TSLIB_H_ */