summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--COPYING22
-rw-r--r--include/evemu.h16
-rw-r--r--src/evemu-impl.h17
-rw-r--r--src/evemu.c16
-rw-r--r--tools/evemu-describe.c16
-rw-r--r--tools/evemu-device.c16
-rw-r--r--tools/evemu-echo.c16
-rw-r--r--tools/evemu-play.c16
-rw-r--r--tools/evemu-record.c16
9 files changed, 135 insertions, 16 deletions
diff --git a/COPYING b/COPYING
index 5500f01..4432540 100644
--- a/COPYING
+++ b/COPYING
@@ -1,9 +1,12 @@
1evemu - Kernel device emulation
2 1
3 Copyright (C) 2010 Henrik Rydberg <rydberg@bitmath.org> 2 GNU GENERAL PUBLIC LICENSE
4 Copyright (C) 2010 Canonical Ltd. 3 Version 3, 29 June 2007
5 4
6 Preamble 5 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
6 Everyone is permitted to copy and distribute verbatim copies
7 of this license document, but changing it is not allowed.
8
9 Preamble
7 10
8 The GNU General Public License is a free, copyleft license for 11 The GNU General Public License is a free, copyleft license for
9software and other kinds of works. 12software and other kinds of works.
@@ -66,7 +69,7 @@ patents cannot be used to render the program non-free.
66 The precise terms and conditions for copying, distribution and 69 The precise terms and conditions for copying, distribution and
67modification follow. 70modification follow.
68 71
69 TERMS AND CONDITIONS 72 TERMS AND CONDITIONS
70 73
71 0. Definitions. 74 0. Definitions.
72 75
@@ -74,7 +77,7 @@ modification follow.
74 77
75 "Copyright" also means copyright-like laws that apply to other kinds of 78 "Copyright" also means copyright-like laws that apply to other kinds of
76works, such as semiconductor masks. 79works, such as semiconductor masks.
77 80
78 "The Program" refers to any copyrightable work licensed under this 81 "The Program" refers to any copyrightable work licensed under this
79License. Each licensee is addressed as "you". "Licensees" and 82License. Each licensee is addressed as "you". "Licensees" and
80"recipients" may be individuals or organizations. 83"recipients" may be individuals or organizations.
@@ -507,7 +510,7 @@ actual knowledge that, but for the patent license, your conveying the
507covered work in a country, or your recipient's use of the covered work 510covered work in a country, or your recipient's use of the covered work
508in a country, would infringe one or more identifiable patents in that 511in a country, would infringe one or more identifiable patents in that
509country that you have reason to believe are valid. 512country that you have reason to believe are valid.
510 513
511 If, pursuant to or in connection with a single transaction or 514 If, pursuant to or in connection with a single transaction or
512arrangement, you convey, or propagate by procuring conveyance of, a 515arrangement, you convey, or propagate by procuring conveyance of, a
513covered work, and grant a patent license to some of the parties 516covered work, and grant a patent license to some of the parties
@@ -616,9 +619,9 @@ an absolute waiver of all civil liability in connection with the
616Program, unless a warranty or assumption of liability accompanies a 619Program, unless a warranty or assumption of liability accompanies a
617copy of the Program in return for a fee. 620copy of the Program in return for a fee.
618 621
619 END OF TERMS AND CONDITIONS 622 END OF TERMS AND CONDITIONS
620 623
621 How to Apply These Terms to Your New Programs 624 How to Apply These Terms to Your New Programs
622 625
623 If you develop a new program, and you want it to be of the greatest 626 If you develop a new program, and you want it to be of the greatest
624possible use to the public, the best way to achieve this is to make it 627possible use to the public, the best way to achieve this is to make it
@@ -670,3 +673,4 @@ may consider it more useful to permit linking proprietary applications with
670the library. If this is what you want to do, use the GNU Lesser General 673the library. If this is what you want to do, use the GNU Lesser General
671Public License instead of this License. But first, please read 674Public License instead of this License. But first, please read
672<http://www.gnu.org/philosophy/why-not-lgpl.html>. 675<http://www.gnu.org/philosophy/why-not-lgpl.html>.
676
diff --git a/include/evemu.h b/include/evemu.h
index 4f1078f..f414fdf 100644
--- a/include/evemu.h
+++ b/include/evemu.h
@@ -2,8 +2,22 @@
2 * 2 *
3 * evemu - Kernel device emulation 3 * evemu - Kernel device emulation
4 * 4 *
5 * Copyright (C) 2010, 2011 Canonical Ltd.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 20 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd.
7 * 21 *
8 * Permission is hereby granted, free of charge, to any person obtaining a 22 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"), 23 * copy of this software and associated documentation files (the "Software"),
diff --git a/src/evemu-impl.h b/src/evemu-impl.h
index 0d3489e..acf2976 100644
--- a/src/evemu-impl.h
+++ b/src/evemu-impl.h
@@ -1,3 +1,20 @@
1/*
2 * Copyright (C) 2010, 2011 Canonical Ltd.
3 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
4 *
5 * This program is free software: you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation, either version 3 of the License, or (at your
8 * option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
1#ifndef _EVEMU_IMPL_H 18#ifndef _EVEMU_IMPL_H
2#define _EVEMU_IMPL_H 19#define _EVEMU_IMPL_H
3 20
diff --git a/src/evemu.c b/src/evemu.c
index 7dc471c..e297b4d 100644
--- a/src/evemu.c
+++ b/src/evemu.c
@@ -2,8 +2,22 @@
2 * 2 *
3 * evemu - Kernel device emulation 3 * evemu - Kernel device emulation
4 * 4 *
5 * Copyright (C) 2010, 2011 Canonical Ltd.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 20 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd.
7 * 21 *
8 * Permission is hereby granted, free of charge, to any person obtaining a 22 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"), 23 * copy of this software and associated documentation files (the "Software"),
diff --git a/tools/evemu-describe.c b/tools/evemu-describe.c
index f91704e..8bff6f9 100644
--- a/tools/evemu-describe.c
+++ b/tools/evemu-describe.c
@@ -2,8 +2,22 @@
2 * 2 *
3 * evemu - Kernel device emulation 3 * evemu - Kernel device emulation
4 * 4 *
5 * Copyright (C) 2010, 2011 Canonical Ltd.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 20 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd.
7 * 21 *
8 * Permission is hereby granted, free of charge, to any person obtaining a 22 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"), 23 * copy of this software and associated documentation files (the "Software"),
diff --git a/tools/evemu-device.c b/tools/evemu-device.c
index ddfc6b0..6dbfb8b 100644
--- a/tools/evemu-device.c
+++ b/tools/evemu-device.c
@@ -2,8 +2,22 @@
2 * 2 *
3 * evemu - Kernel device emulation 3 * evemu - Kernel device emulation
4 * 4 *
5 * Copyright (C) 2010, 2011 Canonical Ltd.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 20 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd.
7 * 21 *
8 * Permission is hereby granted, free of charge, to any person obtaining a 22 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"), 23 * copy of this software and associated documentation files (the "Software"),
diff --git a/tools/evemu-echo.c b/tools/evemu-echo.c
index e9c89df..ea38c2f 100644
--- a/tools/evemu-echo.c
+++ b/tools/evemu-echo.c
@@ -2,8 +2,22 @@
2 * 2 *
3 * evemu - Kernel device emulation 3 * evemu - Kernel device emulation
4 * 4 *
5 * Copyright (C) 2010, 2011 Canonical Ltd.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 20 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd.
7 * 21 *
8 * Permission is hereby granted, free of charge, to any person obtaining a 22 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"), 23 * copy of this software and associated documentation files (the "Software"),
diff --git a/tools/evemu-play.c b/tools/evemu-play.c
index 7c042c2..7b9b777 100644
--- a/tools/evemu-play.c
+++ b/tools/evemu-play.c
@@ -2,8 +2,22 @@
2 * 2 *
3 * evemu - Kernel device emulation 3 * evemu - Kernel device emulation
4 * 4 *
5 * Copyright (C) 2010, 2011 Canonical Ltd.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 20 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd.
7 * 21 *
8 * Permission is hereby granted, free of charge, to any person obtaining a 22 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"), 23 * copy of this software and associated documentation files (the "Software"),
diff --git a/tools/evemu-record.c b/tools/evemu-record.c
index 19ff7e4..afdd400 100644
--- a/tools/evemu-record.c
+++ b/tools/evemu-record.c
@@ -2,8 +2,22 @@
2 * 2 *
3 * evemu - Kernel device emulation 3 * evemu - Kernel device emulation
4 * 4 *
5 * Copyright (C) 2010, 2011 Canonical Ltd.
6 *
7 * This program is free software: you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation, either version 3 of the License, or (at your
10 * option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along
18 * with this program. If not, see <http://www.gnu.org/licenses/>.
19 *
5 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se> 20 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
6 * Copyright (C) 2010 Canonical Ltd.
7 * 21 *
8 * Permission is hereby granted, free of charge, to any person obtaining a 22 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"), 23 * copy of this software and associated documentation files (the "Software"),