about summary refs log tree commit diff
path: root/src/engine/shared
diff options
context:
space:
mode:
authorSworddragon <sworddragon2@aol.com>2010-11-20 11:37:14 +0100
committeroy <Tom_Adams@web.de>2010-11-20 21:26:06 +0100
commitfc9211c7774a0d2d755addfb82b7a02047a6568a (patch)
treeea308df1ebcf493283e915818d7013853816052c /src/engine/shared
parentd7b623f5321c13e82b8c5f5b4573be9cf1eaa568 (diff)
downloadzcatch-fc9211c7774a0d2d755addfb82b7a02047a6568a.tar.gz
zcatch-fc9211c7774a0d2d755addfb82b7a02047a6568a.zip
Updated copyrights
Diffstat (limited to 'src/engine/shared')
-rw-r--r--src/engine/shared/compression.cpp3
-rw-r--r--src/engine/shared/compression.h2
-rw-r--r--src/engine/shared/config.cpp2
-rw-r--r--src/engine/shared/config.h2
-rw-r--r--src/engine/shared/config_variables.h2
-rw-r--r--src/engine/shared/console.cpp2
-rw-r--r--src/engine/shared/console.h2
-rw-r--r--src/engine/shared/datafile.cpp3
-rw-r--r--src/engine/shared/datafile.h2
-rw-r--r--src/engine/shared/demo.cpp2
-rw-r--r--src/engine/shared/demo.h2
-rw-r--r--src/engine/shared/engine.cpp3
-rw-r--r--src/engine/shared/engine.h2
-rw-r--r--src/engine/shared/huffman.cpp2
-rw-r--r--src/engine/shared/huffman.h2
-rw-r--r--src/engine/shared/jobs.cpp3
-rw-r--r--src/engine/shared/jobs.h2
-rw-r--r--src/engine/shared/kernel.cpp2
-rw-r--r--src/engine/shared/linereader.cpp2
-rw-r--r--src/engine/shared/linereader.h2
-rw-r--r--src/engine/shared/map.cpp3
-rw-r--r--src/engine/shared/masterserver.cpp3
-rw-r--r--src/engine/shared/memheap.cpp3
-rw-r--r--src/engine/shared/memheap.h2
-rw-r--r--src/engine/shared/message.h2
-rw-r--r--src/engine/shared/network.cpp3
-rw-r--r--src/engine/shared/network.h2
-rw-r--r--src/engine/shared/network_client.cpp2
-rw-r--r--src/engine/shared/network_conn.cpp2
-rw-r--r--src/engine/shared/network_server.cpp2
-rw-r--r--src/engine/shared/packer.cpp3
-rw-r--r--src/engine/shared/packer.h2
-rw-r--r--src/engine/shared/protocol.h2
-rw-r--r--src/engine/shared/ringbuffer.cpp2
-rw-r--r--src/engine/shared/ringbuffer.h2
-rw-r--r--src/engine/shared/snapshot.cpp3
-rw-r--r--src/engine/shared/snapshot.h2
-rw-r--r--src/engine/shared/storage.cpp3
38 files changed, 76 insertions, 11 deletions
diff --git a/src/engine/shared/compression.cpp b/src/engine/shared/compression.cpp
index 63e44699..f14e1cc4 100644
--- a/src/engine/shared/compression.cpp
+++ b/src/engine/shared/compression.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 
 #include "compression.h"
diff --git a/src/engine/shared/compression.h b/src/engine/shared/compression.h
index 9bd9e61a..f11ab1be 100644
--- a/src/engine/shared/compression.h
+++ b/src/engine/shared/compression.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_COMPRESSION_H
 #define ENGINE_SHARED_COMPRESSION_H
 // variable int packing
diff --git a/src/engine/shared/config.cpp b/src/engine/shared/config.cpp
index 85c6b5ec..f531fa5a 100644
--- a/src/engine/shared/config.cpp
+++ b/src/engine/shared/config.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <engine/config.h>
 #include <engine/storage.h>
 #include <engine/shared/config.h>
diff --git a/src/engine/shared/config.h b/src/engine/shared/config.h
index ccece08c..46698bd1 100644
--- a/src/engine/shared/config.h
+++ b/src/engine/shared/config.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_E_CONFIG_H
 #define ENGINE_SHARED_E_CONFIG_H
 
diff --git a/src/engine/shared/config_variables.h b/src/engine/shared/config_variables.h
index 91d6add2..fdb5a1e2 100644
--- a/src/engine/shared/config_variables.h
+++ b/src/engine/shared/config_variables.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_E_CONFIG_VARIABLES_H
 #define ENGINE_SHARED_E_CONFIG_VARIABLES_H
 #undef ENGINE_SHARED_E_CONFIG_VARIABLES_H // this file will be included several times
diff --git a/src/engine/shared/console.cpp b/src/engine/shared/console.cpp
index 324a1e04..2a290cb3 100644
--- a/src/engine/shared/console.cpp
+++ b/src/engine/shared/console.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <new>
 #include <base/system.h>
 #include <engine/shared/protocol.h>
diff --git a/src/engine/shared/console.h b/src/engine/shared/console.h
index e0435c34..5cacfd90 100644
--- a/src/engine/shared/console.h
+++ b/src/engine/shared/console.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_CONSOLE_H
 #define ENGINE_SHARED_CONSOLE_H
 
diff --git a/src/engine/shared/datafile.cpp b/src/engine/shared/datafile.cpp
index 958b4464..ea8902a6 100644
--- a/src/engine/shared/datafile.cpp
+++ b/src/engine/shared/datafile.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/math.h>
 #include <base/system.h>
 #include <engine/storage.h>
diff --git a/src/engine/shared/datafile.h b/src/engine/shared/datafile.h
index 0392e493..f7ee2847 100644
--- a/src/engine/shared/datafile.h
+++ b/src/engine/shared/datafile.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_DATAFILE_H
 #define ENGINE_SHARED_DATAFILE_H
 
diff --git a/src/engine/shared/demo.cpp b/src/engine/shared/demo.cpp
index fd71443f..91ac4ba3 100644
--- a/src/engine/shared/demo.cpp
+++ b/src/engine/shared/demo.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include <engine/console.h>
 #include <engine/shared/protocol.h>
diff --git a/src/engine/shared/demo.h b/src/engine/shared/demo.h
index 37e86831..79b0021a 100644
--- a/src/engine/shared/demo.h
+++ b/src/engine/shared/demo.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_DEMO_H
 #define ENGINE_SHARED_DEMO_H
 
diff --git a/src/engine/shared/engine.cpp b/src/engine/shared/engine.cpp
index 14fb3391..ea06c57c 100644
--- a/src/engine/shared/engine.cpp
+++ b/src/engine/shared/engine.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 
 #include <base/system.h>
 
diff --git a/src/engine/shared/engine.h b/src/engine/shared/engine.h
index 22d03d42..63b0cc09 100644
--- a/src/engine/shared/engine.h
+++ b/src/engine/shared/engine.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_E_ENGINE_H
 #define ENGINE_SHARED_E_ENGINE_H
 
diff --git a/src/engine/shared/huffman.cpp b/src/engine/shared/huffman.cpp
index 446b6003..feb35b96 100644
--- a/src/engine/shared/huffman.cpp
+++ b/src/engine/shared/huffman.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include "huffman.h"
 
diff --git a/src/engine/shared/huffman.h b/src/engine/shared/huffman.h
index abf6e0e4..0edc36c6 100644
--- a/src/engine/shared/huffman.h
+++ b/src/engine/shared/huffman.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_HUFFMAN_H
 #define ENGINE_SHARED_HUFFMAN_H
 
diff --git a/src/engine/shared/jobs.cpp b/src/engine/shared/jobs.cpp
index 83d7290b..4bc09325 100644
--- a/src/engine/shared/jobs.cpp
+++ b/src/engine/shared/jobs.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include "jobs.h"
 
diff --git a/src/engine/shared/jobs.h b/src/engine/shared/jobs.h
index d04815b0..61835186 100644
--- a/src/engine/shared/jobs.h
+++ b/src/engine/shared/jobs.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_JOBS_H
 #define ENGINE_SHARED_JOBS_H
 typedef int (*JOBFUNC)(void *pData);
diff --git a/src/engine/shared/kernel.cpp b/src/engine/shared/kernel.cpp
index 059a0e48..f59af8c7 100644
--- a/src/engine/shared/kernel.cpp
+++ b/src/engine/shared/kernel.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include <engine/kernel.h>
 
diff --git a/src/engine/shared/linereader.cpp b/src/engine/shared/linereader.cpp
index 78b574be..3efddb59 100644
--- a/src/engine/shared/linereader.cpp
+++ b/src/engine/shared/linereader.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include "linereader.h"
 
 void CLineReader::Init(IOHANDLE io)
diff --git a/src/engine/shared/linereader.h b/src/engine/shared/linereader.h
index f28d42f6..2745b401 100644
--- a/src/engine/shared/linereader.h
+++ b/src/engine/shared/linereader.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_LINEREADER_H
 #define ENGINE_SHARED_LINEREADER_H
 #include <base/system.h>
diff --git a/src/engine/shared/map.cpp b/src/engine/shared/map.cpp
index 827930aa..c0931d54 100644
--- a/src/engine/shared/map.cpp
+++ b/src/engine/shared/map.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include <engine/map.h>
 #include <engine/storage.h>
diff --git a/src/engine/shared/masterserver.cpp b/src/engine/shared/masterserver.cpp
index 9ecf3f71..308c3ed4 100644
--- a/src/engine/shared/masterserver.cpp
+++ b/src/engine/shared/masterserver.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <stdio.h>	// sscanf
 
 #include <base/system.h>
diff --git a/src/engine/shared/memheap.cpp b/src/engine/shared/memheap.cpp
index 6661962b..850577dd 100644
--- a/src/engine/shared/memheap.cpp
+++ b/src/engine/shared/memheap.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include "memheap.h"
 
diff --git a/src/engine/shared/memheap.h b/src/engine/shared/memheap.h
index 706395f2..7228212a 100644
--- a/src/engine/shared/memheap.h
+++ b/src/engine/shared/memheap.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_MEMHEAP_H
 #define ENGINE_SHARED_MEMHEAP_H
 class CHeap
diff --git a/src/engine/shared/message.h b/src/engine/shared/message.h
index 4e67a8e1..8d9d860e 100644
--- a/src/engine/shared/message.h
+++ b/src/engine/shared/message.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_MESSAGE_H
 #define ENGINE_SHARED_MESSAGE_H
 class CMessage
diff --git a/src/engine/shared/network.cpp b/src/engine/shared/network.cpp
index 0305ffff..8e70d9cf 100644
--- a/src/engine/shared/network.cpp
+++ b/src/engine/shared/network.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 
 
diff --git a/src/engine/shared/network.h b/src/engine/shared/network.h
index ef83a191..972d0da8 100644
--- a/src/engine/shared/network.h
+++ b/src/engine/shared/network.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_NETWORK_H
 #define ENGINE_SHARED_NETWORK_H
 
diff --git a/src/engine/shared/network_client.cpp b/src/engine/shared/network_client.cpp
index 57ed08a8..d3adfd20 100644
--- a/src/engine/shared/network_client.cpp
+++ b/src/engine/shared/network_client.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include "network.h"
 
diff --git a/src/engine/shared/network_conn.cpp b/src/engine/shared/network_conn.cpp
index aaab7369..dd61de86 100644
--- a/src/engine/shared/network_conn.cpp
+++ b/src/engine/shared/network_conn.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include "config.h"
 #include "network.h"
diff --git a/src/engine/shared/network_server.cpp b/src/engine/shared/network_server.cpp
index 69278775..fabc865b 100644
--- a/src/engine/shared/network_server.cpp
+++ b/src/engine/shared/network_server.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 #include "network.h"
 
diff --git a/src/engine/shared/packer.cpp b/src/engine/shared/packer.cpp
index 53a74754..5519898d 100644
--- a/src/engine/shared/packer.cpp
+++ b/src/engine/shared/packer.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 
 #include "packer.h"
diff --git a/src/engine/shared/packer.h b/src/engine/shared/packer.h
index 02619919..9091370a 100644
--- a/src/engine/shared/packer.h
+++ b/src/engine/shared/packer.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_PACKER_H
 #define ENGINE_SHARED_PACKER_H
 
diff --git a/src/engine/shared/protocol.h b/src/engine/shared/protocol.h
index d09cff5a..b714b328 100644
--- a/src/engine/shared/protocol.h
+++ b/src/engine/shared/protocol.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_PROTOCOL_H
 #define ENGINE_SHARED_PROTOCOL_H
 
diff --git a/src/engine/shared/ringbuffer.cpp b/src/engine/shared/ringbuffer.cpp
index b84db5a3..172508d7 100644
--- a/src/engine/shared/ringbuffer.cpp
+++ b/src/engine/shared/ringbuffer.cpp
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <base/system.h>
 
 #include "ringbuffer.h"
diff --git a/src/engine/shared/ringbuffer.h b/src/engine/shared/ringbuffer.h
index aa02b8d9..9f0c5a1d 100644
--- a/src/engine/shared/ringbuffer.h
+++ b/src/engine/shared/ringbuffer.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_RINGBUFFER_H
 #define ENGINE_SHARED_RINGBUFFER_H
 
diff --git a/src/engine/shared/snapshot.cpp b/src/engine/shared/snapshot.cpp
index d566d3a3..ac16a6f8 100644
--- a/src/engine/shared/snapshot.cpp
+++ b/src/engine/shared/snapshot.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include "snapshot.h"
 #include "engine.h"
 #include "compression.h"
diff --git a/src/engine/shared/snapshot.h b/src/engine/shared/snapshot.h
index ec27d004..abd25a72 100644
--- a/src/engine/shared/snapshot.h
+++ b/src/engine/shared/snapshot.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef ENGINE_SHARED_SNAPSHOT_H
 #define ENGINE_SHARED_SNAPSHOT_H
 
diff --git a/src/engine/shared/storage.cpp b/src/engine/shared/storage.cpp
index fd1047e5..ec43847f 100644
--- a/src/engine/shared/storage.cpp
+++ b/src/engine/shared/storage.cpp
@@ -1,4 +1,5 @@
-// copyright (c) 2007 magnus auvinen, see licence.txt for more info
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <stdio.h> //remove()
 #include <base/system.h>
 #include <engine/storage.h>