summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--COPYING2
-rw-r--r--README8
-rw-r--r--include/mtdev-mapping.h2
-rw-r--r--include/mtdev-plumbing.h2
-rw-r--r--include/mtdev.h2
-rw-r--r--src/caps.c2
-rw-r--r--src/common.h2
-rw-r--r--src/core.c2
-rw-r--r--src/evbuf.h2
-rw-r--r--src/iobuf.c2
-rw-r--r--src/iobuf.h2
-rw-r--r--src/match.c2
-rw-r--r--src/match.h2
-rw-r--r--src/state.h2
-rw-r--r--test/mtdev-mapgen.c2
-rw-r--r--test/mtdev.c2
16 files changed, 20 insertions, 18 deletions
diff --git a/COPYING b/COPYING
index 7fbfa7b..ab451c9 100644
--- a/COPYING
+++ b/COPYING
@@ -1,4 +1,4 @@
1mtdev - MT device event converter (MIT license) 1mtdev - Multitouch Protocol Translation Library (MIT license)
2 2
3Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 3Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
4Copyright (C) 2010 Canonical Ltd. 4Copyright (C) 2010 Canonical Ltd.
diff --git a/README b/README
index 37ef122..c7ffe9b 100644
--- a/README
+++ b/README
@@ -1,8 +1,10 @@
1mtdev - MT device event converter (MIT license) 1mtdev - Multitouch Protocol Translation Library (MIT license)
2 2
3The mtdev library transforms all variants of kernel MT events to the 3The mtdev library transforms all variants of kernel MT events to the
4slotted type B protocol. See the kernel documentation for more 4slotted type B protocol. The events put into mtdev may be from any MT
5details. 5device, specifically type A without contact tracking, type A with
6contact tracking, or type B with contact tracking. See the kernel
7documentation for further details.
6 8
7--- 9---
8Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 10Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
diff --git a/include/mtdev-mapping.h b/include/mtdev-mapping.h
index 67fa06e..039a2d5 100644
--- a/include/mtdev-mapping.h
+++ b/include/mtdev-mapping.h
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/include/mtdev-plumbing.h b/include/mtdev-plumbing.h
index b610873..137fbc2 100644
--- a/include/mtdev-plumbing.h
+++ b/include/mtdev-plumbing.h
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/include/mtdev.h b/include/mtdev.h
index b621245..5a3f968 100644
--- a/include/mtdev.h
+++ b/include/mtdev.h
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/src/caps.c b/src/caps.c
index 0788acf..d438826 100644
--- a/src/caps.c
+++ b/src/caps.c
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/src/common.h b/src/common.h
index d1c8397..e06f7f7 100644
--- a/src/common.h
+++ b/src/common.h
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/src/core.c b/src/core.c
index 5790e3e..6e8f0d5 100644
--- a/src/core.c
+++ b/src/core.c
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/src/evbuf.h b/src/evbuf.h
index 1afd9f5..17ea4e7 100644
--- a/src/evbuf.h
+++ b/src/evbuf.h
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/src/iobuf.c b/src/iobuf.c
index 89345f3..61ec9c1 100644
--- a/src/iobuf.c
+++ b/src/iobuf.c
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/src/iobuf.h b/src/iobuf.h
index b54ea48..09c26c4 100644
--- a/src/iobuf.h
+++ b/src/iobuf.h
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/src/match.c b/src/match.c
index fcb3045..4247e5a 100644
--- a/src/match.c
+++ b/src/match.c
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/src/match.h b/src/match.h
index a83b651..98e1fa5 100644
--- a/src/match.h
+++ b/src/match.h
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/src/state.h b/src/state.h
index 37ac803..df12139 100644
--- a/src/state.h
+++ b/src/state.h
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/test/mtdev-mapgen.c b/test/mtdev-mapgen.c
index 823ce96..0200175 100644
--- a/test/mtdev-mapgen.c
+++ b/test/mtdev-mapgen.c
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.
diff --git a/test/mtdev.c b/test/mtdev.c
index 7fb01ac..b8e56d5 100644
--- a/test/mtdev.c
+++ b/test/mtdev.c
@@ -1,6 +1,6 @@
1/***************************************************************************** 1/*****************************************************************************
2 * 2 *
3 * mtdev - MT device event converter (MIT license) 3 * mtdev - Multitouch Protocol Translation Library (MIT license)
4 * 4 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd. 6 * Copyright (C) 2010 Canonical Ltd.