From 59722a32a64cf184b01e4169361ce8ff3b953fe9 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sat, 29 Sep 2007 16:16:24 +0000 Subject: [PATCH] added file headers and svn props --HG-- branch : sourcemm-1.6.0 extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/branches/sourcemm-1.6.0%40442 --- sourcemm/IPluginManager.h | 35 +++++++++++++++++------- sourcemm/ISmmAPI.h | 35 +++++++++++++++++------- sourcemm/ISmmPlugin.h | 35 +++++++++++++++++------- sourcemm/episode1/console.cpp | 27 +++++++++++++++++++ sourcemm/episode1/console.h | 27 +++++++++++++++++++ sourcemm/episode1/msvc8/sourcemm.vcproj | 16 ++++++++--- sourcemm/episode1/provider_ep1.cpp | 28 +++++++++++++++++++ sourcemm/episode1/provider_ep1.h | 27 +++++++++++++++++++ sourcemm/episode1/vsp_listener.cpp | 27 +++++++++++++++++++ sourcemm/episode1/vsp_listener.h | 27 +++++++++++++++++++ sourcemm/metamod.cpp | 32 ++++++++++++++++------ sourcemm/metamod.h | 29 +++++++++++++++----- sourcemm/metamod_console.cpp | 29 +++++++++++++++----- sourcemm/metamod_console.h | 29 +++++++++++++++----- sourcemm/metamod_oslink.cpp | 36 ++++++++++++++++--------- sourcemm/metamod_oslink.h | 30 ++++++++++++++++----- sourcemm/metamod_plugins.cpp | 29 +++++++++++++++----- sourcemm/metamod_plugins.h | 35 +++++++++++++++++------- sourcemm/metamod_provider.h | 27 +++++++++++++++++++ sourcemm/metamod_util.cpp | 29 +++++++++++++++----- sourcemm/metamod_util.h | 29 +++++++++++++++----- 21 files changed, 516 insertions(+), 102 deletions(-) diff --git a/sourcemm/IPluginManager.h b/sourcemm/IPluginManager.h index fd0662f..c528008 100644 --- a/sourcemm/IPluginManager.h +++ b/sourcemm/IPluginManager.h @@ -1,12 +1,29 @@ -/* ======== SourceMM ======== -* Copyright (C) 2004-2007 Metamod:Source Development Team -* No warranties of any kind -* -* License: zlib/libpng -* -* Author(s): David "BAILOPAN" Anderson -* ============================ -*/ +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ + */ #ifndef _INCLUDE_PLUGINMANAGER_H #define _INCLUDE_PLUGINMANAGER_H diff --git a/sourcemm/ISmmAPI.h b/sourcemm/ISmmAPI.h index 466e129..b5719f5 100644 --- a/sourcemm/ISmmAPI.h +++ b/sourcemm/ISmmAPI.h @@ -1,12 +1,29 @@ -/* ======== SourceMM ======== -* Copyright (C) 2004-2007 Metamod:Source Development Team -* No warranties of any kind -* -* License: zlib/libpng -* -* Author(s): David "BAILOPAN" Anderson -* ============================ -*/ +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ + */ #ifndef _INCLUDE_ISMM_API_H #define _INCLUDE_ISMM_API_H diff --git a/sourcemm/ISmmPlugin.h b/sourcemm/ISmmPlugin.h index 99769e5..746eefe 100644 --- a/sourcemm/ISmmPlugin.h +++ b/sourcemm/ISmmPlugin.h @@ -1,12 +1,29 @@ -/* ======== SourceMM ======== -* Copyright (C) 2004-2007 Metamod:Source Development Team -* No warranties of any kind -* -* License: zlib/libpng -* -* Author(s): David "BAILOPAN" Anderson -* ============================ -*/ +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ + */ #ifndef _INCLUDE_ISMM_PLUGIN_H #define _INCLUDE_ISMM_PLUGIN_H diff --git a/sourcemm/episode1/console.cpp b/sourcemm/episode1/console.cpp index 5903672..1f64a2a 100644 --- a/sourcemm/episode1/console.cpp +++ b/sourcemm/episode1/console.cpp @@ -1,3 +1,30 @@ +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ + */ + #include "console.h" #include "provider_ep1.h" diff --git a/sourcemm/episode1/console.h b/sourcemm/episode1/console.h index 3e388d7..6f22cdb 100644 --- a/sourcemm/episode1/console.h +++ b/sourcemm/episode1/console.h @@ -1,3 +1,30 @@ +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ + */ + #ifndef _INCLUDE_CONSOLE_MMS_H_ #define _INCLUDE_CONSOLE_MMS_H_ diff --git a/sourcemm/episode1/msvc8/sourcemm.vcproj b/sourcemm/episode1/msvc8/sourcemm.vcproj index ae17204..2f620e3 100644 --- a/sourcemm/episode1/msvc8/sourcemm.vcproj +++ b/sourcemm/episode1/msvc8/sourcemm.vcproj @@ -265,6 +265,10 @@ RelativePath="..\..\metamod_console.h" > + + @@ -277,10 +281,6 @@ RelativePath="..\..\metamod_util.h" > - - + + + + #include "convar_smm.h" #include diff --git a/sourcemm/episode1/provider_ep1.h b/sourcemm/episode1/provider_ep1.h index c09ae06..0a22f10 100644 --- a/sourcemm/episode1/provider_ep1.h +++ b/sourcemm/episode1/provider_ep1.h @@ -1,3 +1,30 @@ +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ + */ + #ifndef _INCLUDE_METAMOD_SOURCE_BASE_PROVIDER_H_ #define _INCLUDE_METAMOD_SOURCE_BASE_PROVIDER_H_ diff --git a/sourcemm/episode1/vsp_listener.cpp b/sourcemm/episode1/vsp_listener.cpp index 4a89902..9097732 100644 --- a/sourcemm/episode1/vsp_listener.cpp +++ b/sourcemm/episode1/vsp_listener.cpp @@ -1,3 +1,30 @@ +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ + */ + #include "vsp_listener.h" #include "svn_version.h" #include "metamod.h" diff --git a/sourcemm/episode1/vsp_listener.h b/sourcemm/episode1/vsp_listener.h index 228e902..558be21 100644 --- a/sourcemm/episode1/vsp_listener.h +++ b/sourcemm/episode1/vsp_listener.h @@ -1,3 +1,30 @@ +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ + */ + #ifndef _INCLUDE_METAMOD_SOURCE_VSP_LISTENER_H_ #define _INCLUDE_METAMOD_SOURCE_VSP_LISTENER_H_ diff --git a/sourcemm/metamod.cpp b/sourcemm/metamod.cpp index daf5780..8c6e55e 100644 --- a/sourcemm/metamod.cpp +++ b/sourcemm/metamod.cpp @@ -1,13 +1,28 @@ -/* ======== SourceMM ======== - * Copyright (C) 2004-2007 Metamod:Source Development Team - * No warranties of any kind +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== * - * License: zlib/libpng + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: * - * Author(s): David "BAILOPAN" Anderson - * Contributor(s): Scott "Damaged Soul" Ehlert - * : Pavol "PM OnoTo" Marko - * ============================ + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ */ #if defined _DEBUG @@ -21,6 +36,7 @@ #include "metamod_plugins.h" #include "metamod_util.h" #include "metamod_console.h" +#include "metamod_oslink.h" #if defined DEBUG2 #undef DEBUG2 #define _DEBUG diff --git a/sourcemm/metamod.h b/sourcemm/metamod.h index cb03391..291101c 100644 --- a/sourcemm/metamod.h +++ b/sourcemm/metamod.h @@ -1,11 +1,28 @@ -/* ======== SourceMM ======== - * Copyright (C) 2004-2007 Metamod:Source Development Team - * No warranties of any kind +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== * - * License: zlib/libpng + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: * - * Author(s): David "BAILOPAN" Anderson - * ============================ + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ */ #ifndef _INCLUDE_SOURCEMM_H diff --git a/sourcemm/metamod_console.cpp b/sourcemm/metamod_console.cpp index 18183d4..3c81b94 100644 --- a/sourcemm/metamod_console.cpp +++ b/sourcemm/metamod_console.cpp @@ -1,11 +1,28 @@ -/* ======== SourceMM ======== - * Copyright (C) 2004-2007 Metamod:Source Development Team - * No warranties of any kind +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== * - * License: zlib/libpng + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: * - * Author(s): David "BAILOPAN" Anderson - * ============================ + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ */ #if defined _DEBUG diff --git a/sourcemm/metamod_console.h b/sourcemm/metamod_console.h index b0d15ba..de5c868 100644 --- a/sourcemm/metamod_console.h +++ b/sourcemm/metamod_console.h @@ -1,11 +1,28 @@ -/* ======== SourceMM ======== - * Copyright (C) 2004-2007 Metamod:Source Development Team - * No warranties of any kind +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== * - * License: zlib/libpng + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: * - * Author(s): David "BAILOPAN" Anderson - * ============================ + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ */ #ifndef _INCLUDE_CONCOMMANDS_H diff --git a/sourcemm/metamod_oslink.cpp b/sourcemm/metamod_oslink.cpp index 9a8ca10..42f1517 100644 --- a/sourcemm/metamod_oslink.cpp +++ b/sourcemm/metamod_oslink.cpp @@ -1,16 +1,28 @@ -/* ======== SourceMM ======== - * Copyright (C) 2004-2007 Metamod:Source Development Team - * No warranties of any kind - * - * License: zlib/libpng - * - * Author(s): David "BAILOPAN" Anderson - * ============================ - */ - /** - * @brief Implements OS-dependant functions from oslink.h - * @file oslink.cpp + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ */ #include "metamod_oslink.h" diff --git a/sourcemm/metamod_oslink.h b/sourcemm/metamod_oslink.h index 77e4b75..8dcf4ca 100644 --- a/sourcemm/metamod_oslink.h +++ b/sourcemm/metamod_oslink.h @@ -1,11 +1,28 @@ -/* ======== SourceMM ======== - * Copyright (C) 2004-2007 Metamod:Source Development Team - * No warranties of any kind +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== * - * License: zlib/libpng + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: * - * Author(s): David "BAILOPAN" Anderson - * ============================ + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ */ #ifndef _INCLUDE_OSLINK_H @@ -37,6 +54,7 @@ #define ALT_SEP_CHAR '/' #define PATH_SIZE MAX_PATH #define SERVER_DLL "server.dll" + #define strcasecmp stricmp #elif defined __linux__ #define OS_LINUX #include diff --git a/sourcemm/metamod_plugins.cpp b/sourcemm/metamod_plugins.cpp index a71b72c..4bb0bbe 100644 --- a/sourcemm/metamod_plugins.cpp +++ b/sourcemm/metamod_plugins.cpp @@ -1,11 +1,28 @@ -/* ======== SourceMM ======== - * Copyright (C) 2004-2007 Metamod:Source Development Team - * No warranties of any kind +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== * - * License: zlib/libpng + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: * - * Author(s): David "BAILOPAN" Anderson - * ============================ + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ */ #if defined _DEBUG diff --git a/sourcemm/metamod_plugins.h b/sourcemm/metamod_plugins.h index d4ba6af..f2e11c3 100644 --- a/sourcemm/metamod_plugins.h +++ b/sourcemm/metamod_plugins.h @@ -1,12 +1,29 @@ -/* ======== SourceMM ======== -* Copyright (C) 2004-2007 Metamod:Source Development Team -* No warranties of any kind -* -* License: zlib/libpng -* -* Author(s): David "BAILOPAN" Anderson -* ============================ -*/ +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ + */ #ifndef _INCLUDE_CPLUGIN_H #define _INCLUDE_CPLUGIN_H diff --git a/sourcemm/metamod_provider.h b/sourcemm/metamod_provider.h index ff01159..f7f324e 100644 --- a/sourcemm/metamod_provider.h +++ b/sourcemm/metamod_provider.h @@ -1,3 +1,30 @@ +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== + * + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: + * + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ + */ + #ifndef _INCLUDE_METAMOD_SOURCE_SUPPORT_H_ #define _INCLUDE_METAMOD_SOURCE_SUPPORT_H_ diff --git a/sourcemm/metamod_util.cpp b/sourcemm/metamod_util.cpp index 48f2d3d..730eddf 100644 --- a/sourcemm/metamod_util.cpp +++ b/sourcemm/metamod_util.cpp @@ -1,11 +1,28 @@ -/* ======== SourceMM ======== - * Copyright (C) 2004-2007 Metamod:Source Development Team - * No warranties of any kind +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== * - * License: zlib/libpng + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: * - * Author(s): David "BAILOPAN" Anderson - * ============================ + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ */ #include diff --git a/sourcemm/metamod_util.h b/sourcemm/metamod_util.h index d02dd40..de507ee 100644 --- a/sourcemm/metamod_util.h +++ b/sourcemm/metamod_util.h @@ -1,11 +1,28 @@ -/* ======== SourceMM ======== - * Copyright (C) 2004-2007 Metamod:Source Development Team - * No warranties of any kind +/** + * vim: set ts=4 : + * ====================================================== + * Metamod:Source + * Copyright (C) 2004-2007 AlliedModders LLC and authors. + * All rights reserved. + * ====================================================== * - * License: zlib/libpng + * This software is provided 'as-is', without any express or implied warranty. + * In no event will the authors be held liable for any damages arising from + * the use of this software. + * + * Permission is granted to anyone to use this software for any purpose, + * including commercial applications, and to alter it and redistribute it + * freely, subject to the following restrictions: * - * Author(s): David "BAILOPAN" Anderson - * ============================ + * 1. The origin of this software must not be misrepresented; you must not + * claim that you wrote the original software. If you use this software in a + * product, an acknowledgment in the product documentation would be + * appreciated but is not required. + * 2. Altered source versions must be plainly marked as such, and must not be + * misrepresented as being the original software. + * 3. This notice may not be removed or altered from any source distribution. + * + * Version: $Id$ */ #ifndef _INCLUDE_UTIL_H