OSDN Git Service

* src/tslib-filter.h: BUGFIX: make the symbol used by the plugins,
authorChris Larson <clarson@kergoth.com>
Wed, 2 Mar 2005 01:18:05 +0000 (18:18 -0700)
committerChris Larson <clarson@kergoth.com>
Wed, 2 Mar 2005 01:18:05 +0000 (18:18 -0700)
tslib_parse_vars, visible.

ChangeLog
src/tslib-filter.h

index e61181a..bc9eb4f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-03-01 Chris Larson <kergoth@handhelds.org>
+
+       * src/tslib-filter.h: BUGFIX: make the symbol used by the plugins,
+         tslib_parse_vars, visible.
+
 2005-02-28 Chris Larson <kergoth@handhelds.org>
 
        * tslib.pc.in: Add pkg-config file for tslib.
index 2f59a27..e33735e 100644 (file)
@@ -7,7 +7,7 @@
  *
  * This file is placed under the LGPL.
  *
- * $Id: tslib-filter.h,v 1.2 2002/06/17 17:21:43 dlowder Exp $
+ * $Id: tslib-filter.h,v 1.3 2005/03/01 18:18:05 kergoth Exp $
  *
  * Internal touch screen library definitions.
  */
@@ -15,6 +15,8 @@
 extern "C" {
 #endif /* __cplusplus */
 
+#include <tslib.h>
+
 struct tslib_module_info;
 struct tsdev;
 
@@ -36,7 +38,7 @@ struct tslib_module_info {
        const struct tslib_ops *ops;
 };
 
-extern int tslib_parse_vars(struct tslib_module_info *,
+TSAPI extern int tslib_parse_vars(struct tslib_module_info *,
                            const struct tslib_vars *, int,
                            const char *);