aboutsummaryrefslogtreecommitdiff
path: root/gob
diff options
context:
space:
mode:
authorMax Horn2005-04-05 18:08:02 +0000
committerMax Horn2005-04-05 18:08:02 +0000
commit0ddbcc78452a3391a529f5b493203a77fcf6dad2 (patch)
tree8b9e0a0e33dce257cd9c47af79892b3eabea7bb2 /gob
parentebdb705ffdc6c71ab51fc90934fa207bc0d8e474 (diff)
downloadscummvm-rg350-0ddbcc78452a3391a529f5b493203a77fcf6dad2.tar.gz
scummvm-rg350-0ddbcc78452a3391a529f5b493203a77fcf6dad2.tar.bz2
scummvm-rg350-0ddbcc78452a3391a529f5b493203a77fcf6dad2.zip
Changed remaining file headers
svn-id: r17401
Diffstat (limited to 'gob')
-rw-r--r--gob/anim.h4
-rw-r--r--gob/dataio.h4
-rw-r--r--gob/debug.h4
-rw-r--r--gob/draw.h4
-rw-r--r--gob/driver_vga.h4
-rw-r--r--gob/game.h4
-rw-r--r--gob/global.h4
-rw-r--r--gob/gob.h4
-rw-r--r--gob/goblin.cpp28
-rw-r--r--gob/goblin.h32
-rw-r--r--gob/init.cpp28
-rw-r--r--gob/init.h32
-rw-r--r--gob/inter.cpp28
-rw-r--r--gob/inter.h32
-rw-r--r--gob/map.cpp28
-rw-r--r--gob/map.h32
-rw-r--r--gob/mult.cpp28
-rw-r--r--gob/mult.h32
-rw-r--r--gob/pack.cpp28
-rw-r--r--gob/pack.h32
-rw-r--r--gob/palanim.cpp28
-rw-r--r--gob/palanim.h32
-rw-r--r--gob/parse.cpp28
-rw-r--r--gob/parse.h32
-rw-r--r--gob/resource.cpp28
-rw-r--r--gob/resource.h32
-rw-r--r--gob/scenery.cpp28
-rw-r--r--gob/scenery.h32
-rw-r--r--gob/sound.cpp28
-rw-r--r--gob/sound.h32
-rw-r--r--gob/timer.cpp28
-rw-r--r--gob/timer.h32
-rw-r--r--gob/util.cpp28
-rw-r--r--gob/util.h32
-rw-r--r--gob/video.cpp28
-rw-r--r--gob/video.h32
36 files changed, 632 insertions, 240 deletions
diff --git a/gob/anim.h b/gob/anim.h
index c7239ae052..eaf6eae8d5 100644
--- a/gob/anim.h
+++ b/gob/anim.h
@@ -19,8 +19,8 @@
* $Header$
*
*/
-#ifndef __ANIM_H
-#define __ANIM_H
+#ifndef GOB_ANIM_H
+#define GOB_ANIM_H
namespace Gob {
diff --git a/gob/dataio.h b/gob/dataio.h
index f2d5bc4878..5af8afc271 100644
--- a/gob/dataio.h
+++ b/gob/dataio.h
@@ -19,8 +19,8 @@
* $Header$
*
*/
-#ifndef __DATAIO_H
-#define __DATAIO_H
+#ifndef GOB_DATAIO_H
+#define GOB_DATAIO_H
#include "common/file.h"
#include <sys/stat.h>
diff --git a/gob/debug.h b/gob/debug.h
index b5e19c9093..8248817b74 100644
--- a/gob/debug.h
+++ b/gob/debug.h
@@ -19,8 +19,8 @@
* $Header$
*
*/
-#ifndef __MY_DEBUG_H
-#define __MY_DEBUG_H
+#ifndef GOB_DEBUG_H
+#define GOB_DEBUG_H
#define LOG_NAME "log.txt"
diff --git a/gob/draw.h b/gob/draw.h
index d8d598f620..89ddd4d112 100644
--- a/gob/draw.h
+++ b/gob/draw.h
@@ -19,8 +19,8 @@
* $Header$
*
*/
-#ifndef __DRAW_H
-#define __DRAW_H
+#ifndef GOB_DRAW_H
+#define GOB_DRAW_H
#include "gob/video.h"
diff --git a/gob/driver_vga.h b/gob/driver_vga.h
index bbb128effe..89f3a44e2b 100644
--- a/gob/driver_vga.h
+++ b/gob/driver_vga.h
@@ -19,8 +19,8 @@
* $Header$
*
*/
-#ifndef DRIVER_VGA
-#define DRIVER_VGA
+#ifndef GOB_DRIVER_VGA_H
+#define GOB_DRIVER_VGA_H
#include "gob/video.h"
diff --git a/gob/game.h b/gob/game.h
index ee5e173981..cf4c9ee5be 100644
--- a/gob/game.h
+++ b/gob/game.h
@@ -19,8 +19,8 @@
* $Header$
*
*/
-#ifndef __GAME_H
-#define __GAME_H
+#ifndef GOB_GAME_H
+#define GOB_GAME_H
#include "gob/sound.h"
diff --git a/gob/global.h b/gob/global.h
index 7fc59c27ce..cc9b164bdf 100644
--- a/gob/global.h
+++ b/gob/global.h
@@ -19,8 +19,8 @@
* $Header$
*
*/
-#ifndef _GLOBAL_H
-#define _GLOBAL_H
+#ifndef GOB_GLOBAL_H
+#define GOB_GLOBAL_H
#include "gob/dataio.h"
#include "gob/video.h"
diff --git a/gob/gob.h b/gob/gob.h
index e845c8471d..cfa38384c6 100644
--- a/gob/gob.h
+++ b/gob/gob.h
@@ -19,8 +19,8 @@
*
*/
-#ifndef __Gob_H
-#define __Gob_H
+#ifndef GOB_GOB_H
+#define GOB_GOB_H
#include "common/stdafx.h"
#include "common/system.h"
diff --git a/gob/goblin.cpp b/gob/goblin.cpp
index 459cc697a9..15b7d60a39 100644
--- a/gob/goblin.cpp
+++ b/gob/goblin.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/goblin.h"
#include "gob/debug.h"
diff --git a/gob/goblin.h b/gob/goblin.h
index e0948bcf93..9447aca87a 100644
--- a/gob/goblin.h
+++ b/gob/goblin.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __GOBLIN_H
-#define __GOBLIN_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_GOBLIN_H
+#define GOB_GOBLIN_H
#include "gob/util.h"
#include "gob/sound.h"
diff --git a/gob/init.cpp b/gob/init.cpp
index 0c41abcaed..a1c73d806e 100644
--- a/gob/init.cpp
+++ b/gob/init.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/dataio.h"
#include "gob/resource.h"
diff --git a/gob/init.h b/gob/init.h
index da5b43a3ea..81d098a61f 100644
--- a/gob/init.h
+++ b/gob/init.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __INIT_H
-#define __INIT_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_INIT_H
+#define GOB_INIT_H
namespace Gob {
diff --git a/gob/inter.cpp b/gob/inter.cpp
index 2054857810..f1b0bdab0c 100644
--- a/gob/inter.cpp
+++ b/gob/inter.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/inter.h"
diff --git a/gob/inter.h b/gob/inter.h
index fc31b72b2e..f90ba3a44e 100644
--- a/gob/inter.h
+++ b/gob/inter.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __INTERPRET_H
-#define __INTERPRET_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_INTERPRET_H
+#define GOB_INTERPRET_H
namespace Gob {
diff --git a/gob/map.cpp b/gob/map.cpp
index a9008eb7f4..9e483c10be 100644
--- a/gob/map.cpp
+++ b/gob/map.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/map.h"
#include "gob/video.h"
diff --git a/gob/map.h b/gob/map.h
index 10d335216b..f112f58173 100644
--- a/gob/map.h
+++ b/gob/map.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __MAP_H
-#define __MAP_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_MAP_H
+#define GOB_MAP_H
namespace Gob {
diff --git a/gob/mult.cpp b/gob/mult.cpp
index 8166a57cf8..59bf338014 100644
--- a/gob/mult.cpp
+++ b/gob/mult.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/video.h"
#include "gob/anim.h"
diff --git a/gob/mult.h b/gob/mult.h
index fc375a0d16..086b45cd4d 100644
--- a/gob/mult.h
+++ b/gob/mult.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __MULT_H
-#define __MULT_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_MULT_H
+#define GOB_MULT_H
#include "gob/sound.h"
diff --git a/gob/pack.cpp b/gob/pack.cpp
index 064321c5e9..551b7c28c2 100644
--- a/gob/pack.cpp
+++ b/gob/pack.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/pack.h"
#include "gob/debug.h"
diff --git a/gob/pack.h b/gob/pack.h
index 11929834fe..f310dc217c 100644
--- a/gob/pack.h
+++ b/gob/pack.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __UNPACKER_H
-#define __UNPACKER_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_UNPACKER_H
+#define GOB_UNPACKER_H
namespace Gob {
diff --git a/gob/palanim.cpp b/gob/palanim.cpp
index 3bdadb043f..1435663fe5 100644
--- a/gob/palanim.cpp
+++ b/gob/palanim.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/video.h"
#include "gob/util.h"
diff --git a/gob/palanim.h b/gob/palanim.h
index 28bffc6351..98b5fe4e3d 100644
--- a/gob/palanim.h
+++ b/gob/palanim.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __PALANIM_H
-#define __PALANIM_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_PALANIM_H
+#define GOB_PALANIM_H
namespace Gob {
diff --git a/gob/parse.cpp b/gob/parse.cpp
index aef83d367d..809d570a7c 100644
--- a/gob/parse.cpp
+++ b/gob/parse.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/parse.h"
diff --git a/gob/parse.h b/gob/parse.h
index 437f13a191..ae6250bac4 100644
--- a/gob/parse.h
+++ b/gob/parse.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __PARSE_H
-#define __PARSE_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_PARSE_H
+#define GOB_PARSE_H
namespace Gob {
diff --git a/gob/resource.cpp b/gob/resource.cpp
index 0db2b8d1e3..cbb143f0c2 100644
--- a/gob/resource.cpp
+++ b/gob/resource.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/video.h"
diff --git a/gob/resource.h b/gob/resource.h
index f59a1d8b83..ee548cf57a 100644
--- a/gob/resource.h
+++ b/gob/resource.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __RESOURCE_H
-#define __RESOURCE_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_RESOURCE_H
+#define GOB_RESOURCE_H
namespace Gob {
diff --git a/gob/scenery.cpp b/gob/scenery.cpp
index ed934db383..e5cc68f838 100644
--- a/gob/scenery.cpp
+++ b/gob/scenery.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/scenery.h"
#include "gob/debug.h"
diff --git a/gob/scenery.h b/gob/scenery.h
index 3d0bb2731d..df24a35406 100644
--- a/gob/scenery.h
+++ b/gob/scenery.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __SCENERY_H
-#define __SCENERY_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_SCENERY_H
+#define GOB_SCENERY_H
namespace Gob {
diff --git a/gob/sound.cpp b/gob/sound.cpp
index 176a5d27cc..4656261a3c 100644
--- a/gob/sound.cpp
+++ b/gob/sound.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/debug.h"
diff --git a/gob/sound.h b/gob/sound.h
index 9a24b08587..fed333626d 100644
--- a/gob/sound.h
+++ b/gob/sound.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __SOUND_H
-#define __SOUND_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_SOUND_H
+#define GOB_SOUND_H
namespace Gob {
diff --git a/gob/timer.cpp b/gob/timer.cpp
index adc5337fc4..863977b6ee 100644
--- a/gob/timer.cpp
+++ b/gob/timer.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/debug.h"
diff --git a/gob/timer.h b/gob/timer.h
index 26f3b7df56..b27450db53 100644
--- a/gob/timer.h
+++ b/gob/timer.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __TIMER_H_
-#define __TIMER_H_
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_TIMER_H
+#define GOB_TIMER_H
namespace Gob {
diff --git a/gob/util.cpp b/gob/util.cpp
index 839d6c0c78..15d1d68a7b 100644
--- a/gob/util.cpp
+++ b/gob/util.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/timer.h"
diff --git a/gob/util.h b/gob/util.h
index 2aeaee03de..d13b1edb2e 100644
--- a/gob/util.h
+++ b/gob/util.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __UTIL_H
-#define __UTIL_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_UTIL_H
+#define GOB_UTIL_H
#include "gob/video.h"
diff --git a/gob/video.cpp b/gob/video.cpp
index 6df2b28903..97aae3660e 100644
--- a/gob/video.cpp
+++ b/gob/video.cpp
@@ -1,10 +1,24 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
#include "gob/gob.h"
#include "gob/global.h"
#include "gob/video.h"
diff --git a/gob/video.h b/gob/video.h
index 130e0c8b5f..073f6d192d 100644
--- a/gob/video.h
+++ b/gob/video.h
@@ -1,12 +1,26 @@
-/*
-** Gobliiins 1
-** Original game by CoktelVision
-**
-** Reverse engineered by Ivan Dubrov <WFrag@yandex.ru>
-**
-*/
-#ifndef __VIDEO_H
-#define __VIDEO_H
+/* ScummVM - Scumm Interpreter
+ * Copyright (C) 2004 Ivan Dubrov
+ * Copyright (C) 2004-2005 The ScummVM project
+ *
+ * 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
+ * aint32 with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ *
+ * $Header$
+ *
+ */
+#ifndef GOB_VIDEO_H
+#define GOB_VIDEO_H
namespace Gob {