From 954424450b9a4dd44c9ebf3f4f8c35eb41d50fd5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Fonseca?= Date: Tue, 8 Jul 2008 10:32:53 +0900 Subject: [PATCH] Add copyright headers. --- base.py | 19 +++++++++++++++++++ d3d8.py | 19 +++++++++++++++++++ d3d8caps.py | 19 +++++++++++++++++++ d3d8types.py | 19 +++++++++++++++++++ log.hpp | 18 ++++++++++++++++++ windows.py | 19 +++++++++++++++++++ 6 files changed, 113 insertions(+) diff --git a/base.py b/base.py index 1da4bce..40f9899 100644 --- a/base.py +++ b/base.py @@ -1,3 +1,22 @@ +############################################################################# +# +# Copyright 2008 Jose Fonseca +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . +# +############################################################################# + """C basic types""" class Type: diff --git a/d3d8.py b/d3d8.py index 7d1996d..ec63d1e 100755 --- a/d3d8.py +++ b/d3d8.py @@ -1,3 +1,22 @@ +############################################################################# +# +# Copyright 2008 Jose Fonseca +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . +# +############################################################################# + """d3d8.h""" from windows import * diff --git a/d3d8caps.py b/d3d8caps.py index 454ae0f..6e0435e 100644 --- a/d3d8caps.py +++ b/d3d8caps.py @@ -1,3 +1,22 @@ +############################################################################# +# +# Copyright 2008 Jose Fonseca +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . +# +############################################################################# + """d3d8caps.h""" from windows import * diff --git a/d3d8types.py b/d3d8types.py index b49307f..1a1c173 100644 --- a/d3d8types.py +++ b/d3d8types.py @@ -1,3 +1,22 @@ +############################################################################# +# +# Copyright 2008 Jose Fonseca +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . +# +############################################################################# + """d3d8types.h""" from windows import * diff --git a/log.hpp b/log.hpp index a4b5d25..a14bdff 100644 --- a/log.hpp +++ b/log.hpp @@ -1,3 +1,21 @@ +/**************************************************************************** + * + * Copyright 2008 Jose Fonseca + * + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as published + * by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public License + * along with this program. If not, see . + * + ****************************************************************************/ #ifndef _LOG_HPP_ #define _LOG_HPP_ diff --git a/windows.py b/windows.py index 95dfc68..65517d7 100644 --- a/windows.py +++ b/windows.py @@ -1,3 +1,22 @@ +############################################################################# +# +# Copyright 2008 Jose Fonseca +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published +# by the Free Software Foundation, either version 3 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 Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public License +# along with this program. If not, see . +# +############################################################################# + """windows.h""" from base import * -- 2.45.2