From 39c122385672eadbea674ef0233a80104ae07c48 Mon Sep 17 00:00:00 2001 From: yinsimei Date: Mon, 5 Jun 2017 11:49:58 +0200 Subject: SLUDGE: add copyright information --- engines/sludge/CommonCode/functionlist.h | 22 +++++++++++++++++++++- engines/sludge/CommonCode/specialsettings.h | 21 +++++++++++++++++++++ engines/sludge/CommonCode/tga.cpp | 21 +++++++++++++++++++++ engines/sludge/CommonCode/tga.h | 21 +++++++++++++++++++++ engines/sludge/CommonCode/utf8.cpp | 21 +++++++++++++++++++++ engines/sludge/CommonCode/utf8.h | 21 +++++++++++++++++++++ engines/sludge/CommonCode/version.h | 21 +++++++++++++++++++++ 7 files changed, 147 insertions(+), 1 deletion(-) diff --git a/engines/sludge/CommonCode/functionlist.h b/engines/sludge/CommonCode/functionlist.h index 637ed5c026..e59fe445e6 100644 --- a/engines/sludge/CommonCode/functionlist.h +++ b/engines/sludge/CommonCode/functionlist.h @@ -1,3 +1,24 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ /* This is the list of the built in functions @@ -5,7 +26,6 @@ in the current version of the engine, but that value currently isn't used anywhere */ - FUNC(true, say) FUNC(true, skipSpeech) FUNC(true, statusText) diff --git a/engines/sludge/CommonCode/specialsettings.h b/engines/sludge/CommonCode/specialsettings.h index 1e41e4e83a..0aa4786c7a 100644 --- a/engines/sludge/CommonCode/specialsettings.h +++ b/engines/sludge/CommonCode/specialsettings.h @@ -1,3 +1,24 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ #define SPECIAL_REGISTERED 1 #define SPECIAL_FULLSCREEN 2 #define SPECIAL_MOUSE_1 4 diff --git a/engines/sludge/CommonCode/tga.cpp b/engines/sludge/CommonCode/tga.cpp index d25ccd9787..bcd543d68f 100644 --- a/engines/sludge/CommonCode/tga.cpp +++ b/engines/sludge/CommonCode/tga.cpp @@ -1,3 +1,24 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ #include #include "tga.h" diff --git a/engines/sludge/CommonCode/tga.h b/engines/sludge/CommonCode/tga.h index e7f6b556db..b1146d0d0c 100644 --- a/engines/sludge/CommonCode/tga.h +++ b/engines/sludge/CommonCode/tga.h @@ -1,3 +1,24 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ #include struct TGAHeader { diff --git a/engines/sludge/CommonCode/utf8.cpp b/engines/sludge/CommonCode/utf8.cpp index 24d9010764..7fe6af1031 100644 --- a/engines/sludge/CommonCode/utf8.cpp +++ b/engines/sludge/CommonCode/utf8.cpp @@ -1,3 +1,24 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ /* Basic UTF-8 manipulation routines by Jeff Bezanson diff --git a/engines/sludge/CommonCode/utf8.h b/engines/sludge/CommonCode/utf8.h index 85989eec37..71df6cb924 100644 --- a/engines/sludge/CommonCode/utf8.h +++ b/engines/sludge/CommonCode/utf8.h @@ -1,3 +1,24 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ #include #include diff --git a/engines/sludge/CommonCode/version.h b/engines/sludge/CommonCode/version.h index 9307bff210..f984b0e56a 100644 --- a/engines/sludge/CommonCode/version.h +++ b/engines/sludge/CommonCode/version.h @@ -1,3 +1,24 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ #define MAJOR_VERSION 2 #define MINOR_VERSION 2 #define RELEASE_VERSION 1 -- cgit v1.2.3