From 03a1c278667fc4b7a7b25d0e790b625b07a2adf2 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Sun, 26 Nov 2006 04:19:05 +0000 Subject: [PATCH] Added GPL headers git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@2548 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/src/sc2code/libs/graphics/sdl/bbox.c | 16 ++++++++++++++++ sc2/src/sc2code/libs/graphics/sdl/bbox.h | 16 ++++++++++++++++ sc2/src/sc2code/libs/graphics/sdl/canvas.c | 16 ++++++++++++++++ sc2/src/sc2code/libs/graphics/sdl/sdluio.c | 16 ++++++++++++++++ sc2/src/sc2code/libs/graphics/sdl/sdluio.h | 16 ++++++++++++++++ sc2/src/sc2code/libs/graphics/widgets.c | 16 ++++++++++++++++ 6 files changed, 96 insertions(+) diff --git a/sc2/src/sc2code/libs/graphics/sdl/bbox.c b/sc2/src/sc2code/libs/graphics/sdl/bbox.c index 62cf62abe..56342f390 100644 --- a/sc2/src/sc2code/libs/graphics/sdl/bbox.c +++ b/sc2/src/sc2code/libs/graphics/sdl/bbox.c @@ -1,3 +1,19 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include "port.h" #include SDL_INCLUDE(SDL.h) #include "bbox.h" diff --git a/sc2/src/sc2code/libs/graphics/sdl/bbox.h b/sc2/src/sc2code/libs/graphics/sdl/bbox.h index d78e6af74..7fa172672 100644 --- a/sc2/src/sc2code/libs/graphics/sdl/bbox.h +++ b/sc2/src/sc2code/libs/graphics/sdl/bbox.h @@ -1,3 +1,19 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include "gfxlib.h" #include "graphics/tfb_draw.h" #include "graphics/gfx_common.h" diff --git a/sc2/src/sc2code/libs/graphics/sdl/canvas.c b/sc2/src/sc2code/libs/graphics/sdl/canvas.c index 1505560aa..a9f39ca35 100644 --- a/sc2/src/sc2code/libs/graphics/sdl/canvas.c +++ b/sc2/src/sc2code/libs/graphics/sdl/canvas.c @@ -1,3 +1,19 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include "port.h" #include SDL_INCLUDE(SDL.h) #include "sdl_common.h" diff --git a/sc2/src/sc2code/libs/graphics/sdl/sdluio.c b/sc2/src/sc2code/libs/graphics/sdl/sdluio.c index d4f1b2d16..3f88bbd0c 100644 --- a/sc2/src/sc2code/libs/graphics/sdl/sdluio.c +++ b/sc2/src/sc2code/libs/graphics/sdl/sdluio.c @@ -1,3 +1,19 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include "sdluio.h" #include "port.h" diff --git a/sc2/src/sc2code/libs/graphics/sdl/sdluio.h b/sc2/src/sc2code/libs/graphics/sdl/sdluio.h index c3178894d..f415f2374 100644 --- a/sc2/src/sc2code/libs/graphics/sdl/sdluio.h +++ b/sc2/src/sc2code/libs/graphics/sdl/sdluio.h @@ -1,3 +1,19 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #ifndef _SDLUIO_H #define _SDLUIO_H diff --git a/sc2/src/sc2code/libs/graphics/widgets.c b/sc2/src/sc2code/libs/graphics/widgets.c index a478228e3..e35b8e5c4 100644 --- a/sc2/src/sc2code/libs/graphics/widgets.c +++ b/sc2/src/sc2code/libs/graphics/widgets.c @@ -1,3 +1,19 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ + #include "graphics/gfx_common.h" #include "graphics/widgets.h" #include "colors.h"