diff options
author | ceros7 <ceros7@svn> | 2010-05-16 00:54:44 +0000 |
---|---|---|
committer | ceros7 <ceros7@svn> | 2010-05-16 00:54:44 +0000 |
commit | 0119609e3301d5009f4d20925a57121648f748be (patch) | |
tree | 8cd3b5c67e2dc18c23e8f8cf9e9477fd26b77679 | |
parent | 3f1b9c93f7122ca52aa7da857af8fa30d118bd6c (diff) |
Add missing copyright headers.
These files were implemented by various team members.
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@30202 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
-rw-r--r-- | tools/XBMCTex/Surface.cpp | 21 | ||||
-rw-r--r-- | tools/XBMCTex/Surface.h | 23 | ||||
-rw-r--r-- | tools/XBMCTex/SurfaceSDL.cpp | 21 | ||||
-rw-r--r-- | tools/XBMCTex/SurfaceSDL.h | 23 | ||||
-rw-r--r-- | tools/XBMCTex/cmdlineargs.h | 21 | ||||
-rw-r--r-- | tools/XBMCTex/xbox.cpp | 21 | ||||
-rw-r--r-- | tools/XBMCTex/xbox.h | 24 | ||||
-rw-r--r-- | tools/XBMCTex/xwinapi.cpp | 20 | ||||
-rw-r--r-- | tools/XBMCTex/xwinapi.h | 21 |
9 files changed, 191 insertions, 4 deletions
diff --git a/tools/XBMCTex/Surface.cpp b/tools/XBMCTex/Surface.cpp index c398c8f3ee..4ef572b8d1 100644 --- a/tools/XBMCTex/Surface.cpp +++ b/tools/XBMCTex/Surface.cpp @@ -1,3 +1,24 @@ +/* + * Copyright (C) 2004-2009 Team XBMC + * http://www.xbmc.org + * + * 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, 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 XBMC; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * http://www.gnu.org/copyleft/gpl.html + * + */ + // class CSurface #include "Surface.h" diff --git a/tools/XBMCTex/Surface.h b/tools/XBMCTex/Surface.h index 2a253fff9b..b4f0c8d1dd 100644 --- a/tools/XBMCTex/Surface.h +++ b/tools/XBMCTex/Surface.h @@ -1,6 +1,27 @@ -// class CSurface - wraps the various interfaces (SDL/DirectX) #pragma once +/* + * Copyright (C) 2004-2009 Team XBMC + * http://www.xbmc.org + * + * 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, 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 XBMC; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * http://www.gnu.org/copyleft/gpl.html + * + */ + +// class CSurface - wraps the various interfaces (SDL/DirectX) #ifdef HAS_SDL #include "SurfaceSDL.h" #else diff --git a/tools/XBMCTex/SurfaceSDL.cpp b/tools/XBMCTex/SurfaceSDL.cpp index 2e29ae9831..ab9c90c909 100644 --- a/tools/XBMCTex/SurfaceSDL.cpp +++ b/tools/XBMCTex/SurfaceSDL.cpp @@ -1,3 +1,24 @@ +/* + * Copyright (C) 2004-2009 Team XBMC + * http://www.xbmc.org + * + * 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, 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 XBMC; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * http://www.gnu.org/copyleft/gpl.html + * + */ + // class CSurface #include "SurfaceSDL.h" diff --git a/tools/XBMCTex/SurfaceSDL.h b/tools/XBMCTex/SurfaceSDL.h index 22bc7ed2c1..660ba14081 100644 --- a/tools/XBMCTex/SurfaceSDL.h +++ b/tools/XBMCTex/SurfaceSDL.h @@ -1,6 +1,27 @@ -// class CSurface - wraps the various interfaces (SDL/DirectX) #pragma once +/* + * Copyright (C) 2004-2009 Team XBMC + * http://www.xbmc.org + * + * 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, 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 XBMC; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * http://www.gnu.org/copyleft/gpl.html + * + */ + +// class CSurface - wraps the various interfaces (SDL/DirectX) #ifdef HAS_SDL #ifdef _LINUX diff --git a/tools/XBMCTex/cmdlineargs.h b/tools/XBMCTex/cmdlineargs.h index a9f5891722..0b99cad282 100644 --- a/tools/XBMCTex/cmdlineargs.h +++ b/tools/XBMCTex/cmdlineargs.h @@ -1,6 +1,27 @@ #ifndef CMDLINEARGS_H #define CMDLINEARGS_H +/* + * Copyright (C) 2004-2009 Team XBMC + * http://www.xbmc.org + * + * 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, 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 XBMC; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * http://www.gnu.org/copyleft/gpl.html + * + */ + #ifdef _LINUX #include "PlatformDefs.h" #include "xwinapi.h" diff --git a/tools/XBMCTex/xbox.cpp b/tools/XBMCTex/xbox.cpp index 852c9e9693..8b072d76ea 100644 --- a/tools/XBMCTex/xbox.cpp +++ b/tools/XBMCTex/xbox.cpp @@ -1,3 +1,24 @@ +/* + * Copyright (C) 2004-2009 Team XBMC + * http://www.xbmc.org + * + * 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, 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 XBMC; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * http://www.gnu.org/copyleft/gpl.html + * + */ + #include "xbox.h" #include "Surface.h" #include "EndianSwap.h" diff --git a/tools/XBMCTex/xbox.h b/tools/XBMCTex/xbox.h index ba72e88694..c17a8f88eb 100644 --- a/tools/XBMCTex/xbox.h +++ b/tools/XBMCTex/xbox.h @@ -1,7 +1,27 @@ -// Some XBox specific stuff - #pragma once +/* + * Copyright (C) 2004-2009 Team XBMC + * http://www.xbmc.org + * + * 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, 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 XBMC; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * http://www.gnu.org/copyleft/gpl.html + * + */ + +// Some XBox specific stuff #ifdef _LINUX #include "PlatformDefs.h" typedef struct tagPALETTEENTRY { diff --git a/tools/XBMCTex/xwinapi.cpp b/tools/XBMCTex/xwinapi.cpp index ea5955c837..54b4f8de6f 100644 --- a/tools/XBMCTex/xwinapi.cpp +++ b/tools/XBMCTex/xwinapi.cpp @@ -1,3 +1,23 @@ +/* + * Copyright (C) 2004-2009 Team XBMC + * http://www.xbmc.org + * + * 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, 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 XBMC; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * http://www.gnu.org/copyleft/gpl.html + * + */ #include <stdio.h> #include <stdlib.h> diff --git a/tools/XBMCTex/xwinapi.h b/tools/XBMCTex/xwinapi.h index be97e4c00a..88cc140e08 100644 --- a/tools/XBMCTex/xwinapi.h +++ b/tools/XBMCTex/xwinapi.h @@ -1,6 +1,27 @@ #ifndef XWINAPI_H__ #define XWINAPI_H__ +/* + * Copyright (C) 2004-2009 Team XBMC + * http://www.xbmc.org + * + * 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, 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 XBMC; see the file COPYING. If not, write to + * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. + * http://www.gnu.org/copyleft/gpl.html + * + */ + #include "PlatformDefs.h" LPTSTR GetCommandLine(); |