summaryrefslogtreecommitdiff
path: root/apps/plugins/lib
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib')
-rw-r--r--apps/plugins/lib/bmp.c6
-rw-r--r--apps/plugins/lib/bmp.h6
-rw-r--r--apps/plugins/lib/bmp_smooth_scale.c6
-rw-r--r--apps/plugins/lib/checkbox.c6
-rw-r--r--apps/plugins/lib/checkbox.h6
-rw-r--r--apps/plugins/lib/configfile.c6
-rw-r--r--apps/plugins/lib/configfile.h6
-rw-r--r--apps/plugins/lib/fixedpoint.c6
-rw-r--r--apps/plugins/lib/fixedpoint.h6
-rw-r--r--apps/plugins/lib/grey.h6
-rw-r--r--apps/plugins/lib/grey_coldfire.S6
-rw-r--r--apps/plugins/lib/grey_core.c6
-rw-r--r--apps/plugins/lib/grey_draw.c6
-rw-r--r--apps/plugins/lib/grey_parm.c6
-rw-r--r--apps/plugins/lib/grey_scroll.c6
-rw-r--r--apps/plugins/lib/grey_sh.S6
-rw-r--r--apps/plugins/lib/helper.c6
-rw-r--r--apps/plugins/lib/helper.h6
-rw-r--r--apps/plugins/lib/highscore.c6
-rw-r--r--apps/plugins/lib/highscore.h6
-rw-r--r--apps/plugins/lib/oldmenuapi.c6
-rw-r--r--apps/plugins/lib/oldmenuapi.h6
-rw-r--r--apps/plugins/lib/overlay.c6
-rw-r--r--apps/plugins/lib/overlay.h6
-rw-r--r--apps/plugins/lib/picture.c6
-rw-r--r--apps/plugins/lib/picture.h6
-rw-r--r--apps/plugins/lib/playback_control.c6
-rw-r--r--apps/plugins/lib/playback_control.h6
-rw-r--r--apps/plugins/lib/playergfx.c6
-rw-r--r--apps/plugins/lib/playergfx.h6
-rw-r--r--apps/plugins/lib/pluginlib_actions.c6
-rw-r--r--apps/plugins/lib/pluginlib_actions.h6
-rw-r--r--apps/plugins/lib/profile_plugin.c6
-rw-r--r--apps/plugins/lib/profile_plugin.h6
-rw-r--r--apps/plugins/lib/rgb_hsv.c6
-rw-r--r--apps/plugins/lib/rgb_hsv.h6
-rw-r--r--apps/plugins/lib/touchscreen.c6
-rw-r--r--apps/plugins/lib/touchscreen.h6
-rw-r--r--apps/plugins/lib/xlcd.h6
-rw-r--r--apps/plugins/lib/xlcd_core.c6
-rw-r--r--apps/plugins/lib/xlcd_draw.c6
-rw-r--r--apps/plugins/lib/xlcd_scroll.c6
42 files changed, 168 insertions, 84 deletions
diff --git a/apps/plugins/lib/bmp.c b/apps/plugins/lib/bmp.c
index c46093a8d9..a8ebbffc27 100644
--- a/apps/plugins/lib/bmp.c
+++ b/apps/plugins/lib/bmp.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 by Antoine Cellerier <dionoea -at- videolan -dot- org> 10 * Copyright (C) 2006 by Antoine Cellerier <dionoea -at- videolan -dot- org>
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/bmp.h b/apps/plugins/lib/bmp.h
index 9114df1ee5..12894f7551 100644
--- a/apps/plugins/lib/bmp.h
+++ b/apps/plugins/lib/bmp.h
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 by Antoine Cellerier <dionoea -at- videolan -dot- org> 10 * Copyright (C) 2006 by Antoine Cellerier <dionoea -at- videolan -dot- org>
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/bmp_smooth_scale.c b/apps/plugins/lib/bmp_smooth_scale.c
index a500bfa792..860a20e7df 100644
--- a/apps/plugins/lib/bmp_smooth_scale.c
+++ b/apps/plugins/lib/bmp_smooth_scale.c
@@ -15,8 +15,10 @@
15 * Port to Rockbox 15 * Port to Rockbox
16 * Copyright (C) 2007 Jonas Hurrelmann (j@outpo.st) 16 * Copyright (C) 2007 Jonas Hurrelmann (j@outpo.st)
17 * 17 *
18 * All files in this archive are subject to the GNU General Public License. 18 * This program is free software; you can redistribute it and/or
19 * See the file COPYING in the source tree root for full license agreement. 19 * modify it under the terms of the GNU General Public License
20 * as published by the Free Software Foundation; either version 2
21 * of the License, or (at your option) any later version.
20 * 22 *
21 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 23 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22 * KIND, either express or implied. 24 * KIND, either express or implied.
diff --git a/apps/plugins/lib/checkbox.c b/apps/plugins/lib/checkbox.c
index 039d5f9cbf..fc3a5e1e7d 100644
--- a/apps/plugins/lib/checkbox.c
+++ b/apps/plugins/lib/checkbox.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 Markus Braun 10 * Copyright (C) 2002 Markus Braun
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/checkbox.h b/apps/plugins/lib/checkbox.h
index 72de4952ca..1456bd4bb9 100644
--- a/apps/plugins/lib/checkbox.h
+++ b/apps/plugins/lib/checkbox.h
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 Markus Braun 10 * Copyright (C) 2002 Markus Braun
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/configfile.c b/apps/plugins/lib/configfile.c
index 516bf616cb..4fb037cb8e 100644
--- a/apps/plugins/lib/configfile.c
+++ b/apps/plugins/lib/configfile.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 Linus Nielsen Feltzing 10 * Copyright (C) 2002 Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/configfile.h b/apps/plugins/lib/configfile.h
index fe4b43c485..9c926bd02c 100644
--- a/apps/plugins/lib/configfile.h
+++ b/apps/plugins/lib/configfile.h
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 Linus Nielsen Feltzing 10 * Copyright (C) 2002 Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/fixedpoint.c b/apps/plugins/lib/fixedpoint.c
index 92979dad53..7b9b68a1e8 100644
--- a/apps/plugins/lib/fixedpoint.c
+++ b/apps/plugins/lib/fixedpoint.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Fixed point library for plugins 12 * Fixed point library for plugins
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/lib/fixedpoint.h b/apps/plugins/lib/fixedpoint.h
index a9650e7977..dfabbad8dc 100644
--- a/apps/plugins/lib/fixedpoint.h
+++ b/apps/plugins/lib/fixedpoint.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Fixed point library for plugins 12 * Fixed point library for plugins
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/lib/grey.h b/apps/plugins/lib/grey.h
index 4a15bd38ea..8f8de9db99 100644
--- a/apps/plugins/lib/grey.h
+++ b/apps/plugins/lib/grey.h
@@ -14,8 +14,10 @@
14* 14*
15* Copyright (C) 2008 Jens Arnold 15* Copyright (C) 2008 Jens Arnold
16* 16*
17* All files in this archive are subject to the GNU General Public License. 17* This program is free software; you can redistribute it and/or
18* See the file COPYING in the source tree root for full license agreement. 18* modify it under the terms of the GNU General Public License
19* as published by the Free Software Foundation; either version 2
20* of the License, or (at your option) any later version.
19* 21*
20* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 22* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21* KIND, either express or implied. 23* KIND, either express or implied.
diff --git a/apps/plugins/lib/grey_coldfire.S b/apps/plugins/lib/grey_coldfire.S
index a040193956..b01d27a768 100644
--- a/apps/plugins/lib/grey_coldfire.S
+++ b/apps/plugins/lib/grey_coldfire.S
@@ -15,8 +15,10 @@
15* 15*
16* Copyright (C) 2008 Jens Arnold 16* Copyright (C) 2008 Jens Arnold
17* 17*
18* All files in this archive are subject to the GNU General Public License. 18* This program is free software; you can redistribute it and/or
19* See the file COPYING in the source tree root for full license agreement. 19* modify it under the terms of the GNU General Public License
20* as published by the Free Software Foundation; either version 2
21* of the License, or (at your option) any later version.
20* 22*
21* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 23* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22* KIND, either express or implied. 24* KIND, either express or implied.
diff --git a/apps/plugins/lib/grey_core.c b/apps/plugins/lib/grey_core.c
index cb1cd7d2be..008104a04f 100644
--- a/apps/plugins/lib/grey_core.c
+++ b/apps/plugins/lib/grey_core.c
@@ -15,8 +15,10 @@
15* 15*
16* Copyright (C) 2008 Jens Arnold 16* Copyright (C) 2008 Jens Arnold
17* 17*
18* All files in this archive are subject to the GNU General Public License. 18* This program is free software; you can redistribute it and/or
19* See the file COPYING in the source tree root for full license agreement. 19* modify it under the terms of the GNU General Public License
20* as published by the Free Software Foundation; either version 2
21* of the License, or (at your option) any later version.
20* 22*
21* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 23* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22* KIND, either express or implied. 24* KIND, either express or implied.
diff --git a/apps/plugins/lib/grey_draw.c b/apps/plugins/lib/grey_draw.c
index 6c2508327b..e9812b6784 100644
--- a/apps/plugins/lib/grey_draw.c
+++ b/apps/plugins/lib/grey_draw.c
@@ -15,8 +15,10 @@
15* 15*
16* Copyright (C) 2008 Jens Arnold 16* Copyright (C) 2008 Jens Arnold
17* 17*
18* All files in this archive are subject to the GNU General Public License. 18* This program is free software; you can redistribute it and/or
19* See the file COPYING in the source tree root for full license agreement. 19* modify it under the terms of the GNU General Public License
20* as published by the Free Software Foundation; either version 2
21* of the License, or (at your option) any later version.
20* 22*
21* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 23* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22* KIND, either express or implied. 24* KIND, either express or implied.
diff --git a/apps/plugins/lib/grey_parm.c b/apps/plugins/lib/grey_parm.c
index e4aaec3efd..90391d779b 100644
--- a/apps/plugins/lib/grey_parm.c
+++ b/apps/plugins/lib/grey_parm.c
@@ -15,8 +15,10 @@
15* 15*
16* Copyright (C) 2008 Jens Arnold 16* Copyright (C) 2008 Jens Arnold
17* 17*
18* All files in this archive are subject to the GNU General Public License. 18* This program is free software; you can redistribute it and/or
19* See the file COPYING in the source tree root for full license agreement. 19* modify it under the terms of the GNU General Public License
20* as published by the Free Software Foundation; either version 2
21* of the License, or (at your option) any later version.
20* 22*
21* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 23* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22* KIND, either express or implied. 24* KIND, either express or implied.
diff --git a/apps/plugins/lib/grey_scroll.c b/apps/plugins/lib/grey_scroll.c
index 56021d149a..082b256d72 100644
--- a/apps/plugins/lib/grey_scroll.c
+++ b/apps/plugins/lib/grey_scroll.c
@@ -15,8 +15,10 @@
15* 15*
16* Copyright (C) 2008 Jens Arnold 16* Copyright (C) 2008 Jens Arnold
17* 17*
18* All files in this archive are subject to the GNU General Public License. 18* This program is free software; you can redistribute it and/or
19* See the file COPYING in the source tree root for full license agreement. 19* modify it under the terms of the GNU General Public License
20* as published by the Free Software Foundation; either version 2
21* of the License, or (at your option) any later version.
20* 22*
21* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 23* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22* KIND, either express or implied. 24* KIND, either express or implied.
diff --git a/apps/plugins/lib/grey_sh.S b/apps/plugins/lib/grey_sh.S
index f77d5b24cd..5bc003c2b3 100644
--- a/apps/plugins/lib/grey_sh.S
+++ b/apps/plugins/lib/grey_sh.S
@@ -15,8 +15,10 @@
15* 15*
16* Copyright (C) 2008 Jens Arnold 16* Copyright (C) 2008 Jens Arnold
17* 17*
18* All files in this archive are subject to the GNU General Public License. 18* This program is free software; you can redistribute it and/or
19* See the file COPYING in the source tree root for full license agreement. 19* modify it under the terms of the GNU General Public License
20* as published by the Free Software Foundation; either version 2
21* of the License, or (at your option) any later version.
20* 22*
21* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 23* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
22* KIND, either express or implied. 24* KIND, either express or implied.
diff --git a/apps/plugins/lib/helper.c b/apps/plugins/lib/helper.c
index 273b066599..02ec7a5470 100644
--- a/apps/plugins/lib/helper.c
+++ b/apps/plugins/lib/helper.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2007 by Peter D'Hoye 10 * Copyright (C) 2007 by Peter D'Hoye
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/helper.h b/apps/plugins/lib/helper.h
index eb52a8bfdc..aa309bbb69 100644
--- a/apps/plugins/lib/helper.h
+++ b/apps/plugins/lib/helper.h
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2007 by Peter D'Hoye 10 * Copyright (C) 2007 by Peter D'Hoye
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/highscore.c b/apps/plugins/lib/highscore.c
index 94b6a7b947..f475651eab 100644
--- a/apps/plugins/lib/highscore.c
+++ b/apps/plugins/lib/highscore.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2005 Linus Nielsen Feltzing 10 * Copyright (C) 2005 Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/highscore.h b/apps/plugins/lib/highscore.h
index b6501cf568..c3d806e746 100644
--- a/apps/plugins/lib/highscore.h
+++ b/apps/plugins/lib/highscore.h
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2005 Linus Nielsen Feltzing 10 * Copyright (C) 2005 Linus Nielsen Feltzing
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/oldmenuapi.c b/apps/plugins/lib/oldmenuapi.c
index 51fb4f3eb2..b83f926532 100644
--- a/apps/plugins/lib/oldmenuapi.c
+++ b/apps/plugins/lib/oldmenuapi.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 Robert E. Hak 10 * Copyright (C) 2002 Robert E. Hak
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/oldmenuapi.h b/apps/plugins/lib/oldmenuapi.h
index ccfd1400dd..858580ce21 100644
--- a/apps/plugins/lib/oldmenuapi.h
+++ b/apps/plugins/lib/oldmenuapi.h
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2002 Robert E. Hak 10 * Copyright (C) 2002 Robert E. Hak
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/overlay.c b/apps/plugins/lib/overlay.c
index 63fb776f02..a779722d88 100644
--- a/apps/plugins/lib/overlay.c
+++ b/apps/plugins/lib/overlay.c
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (C) 2006 Jens Arnold 12 * Copyright (C) 2006 Jens Arnold
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/lib/overlay.h b/apps/plugins/lib/overlay.h
index ba9b1fa308..97c6ccf28b 100644
--- a/apps/plugins/lib/overlay.h
+++ b/apps/plugins/lib/overlay.h
@@ -11,8 +11,10 @@
11 * 11 *
12 * Copyright (C) 2006 Jens Arnold 12 * Copyright (C) 2006 Jens Arnold
13 * 13 *
14 * All files in this archive are subject to the GNU General Public License. 14 * This program is free software; you can redistribute it and/or
15 * See the file COPYING in the source tree root for full license agreement. 15 * modify it under the terms of the GNU General Public License
16 * as published by the Free Software Foundation; either version 2
17 * of the License, or (at your option) any later version.
16 * 18 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied. 20 * KIND, either express or implied.
diff --git a/apps/plugins/lib/picture.c b/apps/plugins/lib/picture.c
index 932b408e56..b5c275f72f 100644
--- a/apps/plugins/lib/picture.c
+++ b/apps/plugins/lib/picture.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2007 Copyright Kévin Ferrare 10 * Copyright (C) 2007 Copyright Kévin Ferrare
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/picture.h b/apps/plugins/lib/picture.h
index d102764c08..7c8891aef7 100644
--- a/apps/plugins/lib/picture.h
+++ b/apps/plugins/lib/picture.h
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2007 Copyright Kévin Ferrare 10 * Copyright (C) 2007 Copyright Kévin Ferrare
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/playback_control.c b/apps/plugins/lib/playback_control.c
index b0456248a8..b82e8bea16 100644
--- a/apps/plugins/lib/playback_control.c
+++ b/apps/plugins/lib/playback_control.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 Jonathan Gordon 10 * Copyright (C) 2006 Jonathan Gordon
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/playback_control.h b/apps/plugins/lib/playback_control.h
index 23b586095e..b8fa840d28 100644
--- a/apps/plugins/lib/playback_control.h
+++ b/apps/plugins/lib/playback_control.h
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 Jonathan Gordon 10 * Copyright (C) 2006 Jonathan Gordon
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/playergfx.c b/apps/plugins/lib/playergfx.c
index 4139a6c605..c332c02711 100644
--- a/apps/plugins/lib/playergfx.c
+++ b/apps/plugins/lib/playergfx.c
@@ -11,8 +11,10 @@
11* 11*
12* Copyright (C) 2005 Jens Arnold 12* Copyright (C) 2005 Jens Arnold
13* 13*
14* All files in this archive are subject to the GNU General Public License. 14* This program is free software; you can redistribute it and/or
15* See the file COPYING in the source tree root for full license agreement. 15* modify it under the terms of the GNU General Public License
16* as published by the Free Software Foundation; either version 2
17* of the License, or (at your option) any later version.
16* 18*
17* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18* KIND, either express or implied. 20* KIND, either express or implied.
diff --git a/apps/plugins/lib/playergfx.h b/apps/plugins/lib/playergfx.h
index 504599ae39..ff9cd5fa7d 100644
--- a/apps/plugins/lib/playergfx.h
+++ b/apps/plugins/lib/playergfx.h
@@ -11,8 +11,10 @@
11* 11*
12* Copyright (C) 2005 Jens Arnold 12* Copyright (C) 2005 Jens Arnold
13* 13*
14* All files in this archive are subject to the GNU General Public License. 14* This program is free software; you can redistribute it and/or
15* See the file COPYING in the source tree root for full license agreement. 15* modify it under the terms of the GNU General Public License
16* as published by the Free Software Foundation; either version 2
17* of the License, or (at your option) any later version.
16* 18*
17* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18* KIND, either express or implied. 20* KIND, either express or implied.
diff --git a/apps/plugins/lib/pluginlib_actions.c b/apps/plugins/lib/pluginlib_actions.c
index 6a008303da..996e2178b4 100644
--- a/apps/plugins/lib/pluginlib_actions.c
+++ b/apps/plugins/lib/pluginlib_actions.c
@@ -10,8 +10,10 @@
10* Copyright (C) 2006 Jonathan Gordon 10* Copyright (C) 2006 Jonathan Gordon
11* 11*
12* 12*
13* All files in this archive are subject to the GNU General Public License. 13* This program is free software; you can redistribute it and/or
14* See the file COPYING in the source tree root for full license agreement. 14* modify it under the terms of the GNU General Public License
15* as published by the Free Software Foundation; either version 2
16* of the License, or (at your option) any later version.
15* 17*
16* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17* KIND, either express or implied. 19* KIND, either express or implied.
diff --git a/apps/plugins/lib/pluginlib_actions.h b/apps/plugins/lib/pluginlib_actions.h
index 601cd73a8c..5f06a0b476 100644
--- a/apps/plugins/lib/pluginlib_actions.h
+++ b/apps/plugins/lib/pluginlib_actions.h
@@ -10,8 +10,10 @@
10* Copyright (C) 2006 Jonathan Gordon 10* Copyright (C) 2006 Jonathan Gordon
11* 11*
12* 12*
13* All files in this archive are subject to the GNU General Public License. 13* This program is free software; you can redistribute it and/or
14* See the file COPYING in the source tree root for full license agreement. 14* modify it under the terms of the GNU General Public License
15* as published by the Free Software Foundation; either version 2
16* of the License, or (at your option) any later version.
15* 17*
16* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 18* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17* KIND, either express or implied. 19* KIND, either express or implied.
diff --git a/apps/plugins/lib/profile_plugin.c b/apps/plugins/lib/profile_plugin.c
index 6f31288c8f..1225bf1006 100644
--- a/apps/plugins/lib/profile_plugin.c
+++ b/apps/plugins/lib/profile_plugin.c
@@ -11,8 +11,10 @@
11* 11*
12* Copyright (C) 2006 Brandon Low 12* Copyright (C) 2006 Brandon Low
13* 13*
14* All files in this archive are subject to the GNU General Public License. 14* This program is free software; you can redistribute it and/or
15* See the file COPYING in the source tree root for full license agreement. 15* modify it under the terms of the GNU General Public License
16* as published by the Free Software Foundation; either version 2
17* of the License, or (at your option) any later version.
16* 18*
17* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18* KIND, either express or implied. 20* KIND, either express or implied.
diff --git a/apps/plugins/lib/profile_plugin.h b/apps/plugins/lib/profile_plugin.h
index 6bc19734d8..fae2a87382 100644
--- a/apps/plugins/lib/profile_plugin.h
+++ b/apps/plugins/lib/profile_plugin.h
@@ -11,8 +11,10 @@
11* 11*
12* Copyright (C) 2005 Brandon Low 12* Copyright (C) 2005 Brandon Low
13* 13*
14* All files in this archive are subject to the GNU General Public License. 14* This program is free software; you can redistribute it and/or
15* See the file COPYING in the source tree root for full license agreement. 15* modify it under the terms of the GNU General Public License
16* as published by the Free Software Foundation; either version 2
17* of the License, or (at your option) any later version.
16* 18*
17* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18* KIND, either express or implied. 20* KIND, either express or implied.
diff --git a/apps/plugins/lib/rgb_hsv.c b/apps/plugins/lib/rgb_hsv.c
index 0d424b9149..27e3b9dcba 100644
--- a/apps/plugins/lib/rgb_hsv.c
+++ b/apps/plugins/lib/rgb_hsv.c
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 Antoine Cellerier <dionoea -at- videolan -dot- org> 10 * Copyright (C) 2006 Antoine Cellerier <dionoea -at- videolan -dot- org>
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/rgb_hsv.h b/apps/plugins/lib/rgb_hsv.h
index 30bb206df1..9e9e2285ad 100644
--- a/apps/plugins/lib/rgb_hsv.h
+++ b/apps/plugins/lib/rgb_hsv.h
@@ -9,8 +9,10 @@
9 * 9 *
10 * Copyright (C) 2006 Antoine Cellerier <dionoea -at- videolan -dot- org> 10 * Copyright (C) 2006 Antoine Cellerier <dionoea -at- videolan -dot- org>
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * This program is free software; you can redistribute it and/or
13 * See the file COPYING in the source tree root for full license agreement. 13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
14 * 16 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied. 18 * KIND, either express or implied.
diff --git a/apps/plugins/lib/touchscreen.c b/apps/plugins/lib/touchscreen.c
index 9acee9cbe8..cda2f46f1e 100644
--- a/apps/plugins/lib/touchscreen.c
+++ b/apps/plugins/lib/touchscreen.c
@@ -9,8 +9,10 @@
9* 9*
10* Copyright (C) 2008 by Maurus Cuelenaere 10* Copyright (C) 2008 by Maurus Cuelenaere
11* 11*
12* All files in this archive are subject to the GNU General Public License. 12* This program is free software; you can redistribute it and/or
13* See the file COPYING in the source tree root for full license agreement. 13* modify it under the terms of the GNU General Public License
14* as published by the Free Software Foundation; either version 2
15* of the License, or (at your option) any later version.
14* 16*
15* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16* KIND, either express or implied. 18* KIND, either express or implied.
diff --git a/apps/plugins/lib/touchscreen.h b/apps/plugins/lib/touchscreen.h
index e7bc0004cc..7050db669b 100644
--- a/apps/plugins/lib/touchscreen.h
+++ b/apps/plugins/lib/touchscreen.h
@@ -9,8 +9,10 @@
9* 9*
10* Copyright (C) 2008 by Maurus Cuelenaere 10* Copyright (C) 2008 by Maurus Cuelenaere
11* 11*
12* All files in this archive are subject to the GNU General Public License. 12* This program is free software; you can redistribute it and/or
13* See the file COPYING in the source tree root for full license agreement. 13* modify it under the terms of the GNU General Public License
14* as published by the Free Software Foundation; either version 2
15* of the License, or (at your option) any later version.
14* 16*
15* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 17* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16* KIND, either express or implied. 18* KIND, either express or implied.
diff --git a/apps/plugins/lib/xlcd.h b/apps/plugins/lib/xlcd.h
index a1e2389f39..da27af19a3 100644
--- a/apps/plugins/lib/xlcd.h
+++ b/apps/plugins/lib/xlcd.h
@@ -11,8 +11,10 @@
11* 11*
12* Copyright (C) 2005 Jens Arnold 12* Copyright (C) 2005 Jens Arnold
13* 13*
14* All files in this archive are subject to the GNU General Public License. 14* This program is free software; you can redistribute it and/or
15* See the file COPYING in the source tree root for full license agreement. 15* modify it under the terms of the GNU General Public License
16* as published by the Free Software Foundation; either version 2
17* of the License, or (at your option) any later version.
16* 18*
17* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 19* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18* KIND, either express or implied. 20* KIND, either express or implied.
diff --git a/apps/plugins/lib/xlcd_core.c b/apps/plugins/lib/xlcd_core.c
index 7f8e566865..a035a80e7b 100644
--- a/apps/plugins/lib/xlcd_core.c
+++ b/apps/plugins/lib/xlcd_core.c
@@ -12,8 +12,10 @@
12* 12*
13* Copyright (C) 2005 Jens Arnold 13* Copyright (C) 2005 Jens Arnold
14* 14*
15* All files in this archive are subject to the GNU General Public License. 15* This program is free software; you can redistribute it and/or
16* See the file COPYING in the source tree root for full license agreement. 16* modify it under the terms of the GNU General Public License
17* as published by the Free Software Foundation; either version 2
18* of the License, or (at your option) any later version.
17* 19*
18* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 20* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19* KIND, either express or implied. 21* KIND, either express or implied.
diff --git a/apps/plugins/lib/xlcd_draw.c b/apps/plugins/lib/xlcd_draw.c
index 506fe99877..01fbc5ef5c 100644
--- a/apps/plugins/lib/xlcd_draw.c
+++ b/apps/plugins/lib/xlcd_draw.c
@@ -12,8 +12,10 @@
12* 12*
13* Copyright (C) 2005 Jens Arnold 13* Copyright (C) 2005 Jens Arnold
14* 14*
15* All files in this archive are subject to the GNU General Public License. 15* This program is free software; you can redistribute it and/or
16* See the file COPYING in the source tree root for full license agreement. 16* modify it under the terms of the GNU General Public License
17* as published by the Free Software Foundation; either version 2
18* of the License, or (at your option) any later version.
17* 19*
18* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 20* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19* KIND, either express or implied. 21* KIND, either express or implied.
diff --git a/apps/plugins/lib/xlcd_scroll.c b/apps/plugins/lib/xlcd_scroll.c
index 076c0547e9..f25e702518 100644
--- a/apps/plugins/lib/xlcd_scroll.c
+++ b/apps/plugins/lib/xlcd_scroll.c
@@ -12,8 +12,10 @@
12* 12*
13* Copyright (C) 2005 Jens Arnold 13* Copyright (C) 2005 Jens Arnold
14* 14*
15* All files in this archive are subject to the GNU General Public License. 15* This program is free software; you can redistribute it and/or
16* See the file COPYING in the source tree root for full license agreement. 16* modify it under the terms of the GNU General Public License
17* as published by the Free Software Foundation; either version 2
18* of the License, or (at your option) any later version.
17* 19*
18* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY 20* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19* KIND, either express or implied. 21* KIND, either express or implied.