diff options
Diffstat (limited to 'win')
-rw-r--r-- | win/colours.h | 23 | ||||
-rw-r--r-- | win/configure.cpp | 27 | ||||
-rw-r--r-- | win/inspircd.nsi | 31 | ||||
-rw-r--r-- | win/inspircd_memory_functions.cpp | 22 | ||||
-rw-r--r-- | win/inspircd_namedpipe.cpp | 19 | ||||
-rw-r--r-- | win/inspircd_namedpipe.h | 20 | ||||
-rw-r--r-- | win/inspircd_win32wrapper.cpp | 28 | ||||
-rw-r--r-- | win/inspircd_win32wrapper.h | 24 | ||||
-rw-r--r-- | win/resource.rc | 2 | ||||
-rw-r--r-- | win/win32service.cpp | 23 | ||||
-rw-r--r-- | win/win32service.h | 18 |
11 files changed, 177 insertions, 60 deletions
diff --git a/win/colours.h b/win/colours.h index c25058b09..fef049036 100644 --- a/win/colours.h +++ b/win/colours.h @@ -1,16 +1,23 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2011 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org> + * Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net> * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This file is part of InspIRCd. InspIRCd 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, version 2. * - * --------------------------------------------------- + * 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, see <http://www.gnu.org/licenses/>. */ + #ifndef COLORS_H #define COLORS_H diff --git a/win/configure.cpp b/win/configure.cpp index 7c9a27854..29b88d780 100644 --- a/win/configure.cpp +++ b/win/configure.cpp @@ -1,16 +1,27 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2011 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2011 Adam <Adam@anope.org> + * Copyright (C) 2007, 2009 Dennis Friis <peavey@inspircd.org> + * Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc> + * Copyright (C) 2008 Eric Dietz <root@wrongway.org> + * Copyright (C) 2007 Burlex <???@???> + * Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net> * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This file is part of InspIRCd. InspIRCd 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, version 2. * - * --------------------------------------------------- + * 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, see <http://www.gnu.org/licenses/>. */ + #define _CRT_SECURE_NO_DEPRECATE #define CONFIGURE_BUILD diff --git a/win/inspircd.nsi b/win/inspircd.nsi index 421a6492e..78f73ef09 100644 --- a/win/inspircd.nsi +++ b/win/inspircd.nsi @@ -1,14 +1,23 @@ -; * +------------------------------------+ -; * | Inspire Internet Relay Chat Daemon | -; * +------------------------------------+ -; * -; * InspIRCd: (C) 2002-2011 InspIRCd Development Team -; * See: http://wiki.inspircd.org/Credits -; * -; * This program is free but copyrighted software; see -; * the file COPYING for details. -; * -; * --------------------------------------------------- +; +; InspIRCd -- Internet Relay Chat Daemon +; +; Copyright (C) 2011 Adam <Adam@anope.org> +; Copyright (C) 2007 Dennis Friis <peavey@inspircd.org> +; Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc> +; +; This file is part of InspIRCd. InspIRCd 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, version 2. +; +; 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, see <http://www.gnu.org/licenses/>. +; + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/win/inspircd_memory_functions.cpp b/win/inspircd_memory_functions.cpp index 6eb76e31a..e40e09c9c 100644 --- a/win/inspircd_memory_functions.cpp +++ b/win/inspircd_memory_functions.cpp @@ -1,16 +1,22 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2011 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org> * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This file is part of InspIRCd. InspIRCd 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, version 2. * - * --------------------------------------------------- + * 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, see <http://www.gnu.org/licenses/>. */ + #include "inspircd_win32wrapper.h" #include <exception> #include <new> diff --git a/win/inspircd_namedpipe.cpp b/win/inspircd_namedpipe.cpp index 46f462832..632c2cca0 100644 --- a/win/inspircd_namedpipe.cpp +++ b/win/inspircd_namedpipe.cpp @@ -1,3 +1,22 @@ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc> + * + * This file is part of InspIRCd. InspIRCd 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, version 2. + * + * 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, see <http://www.gnu.org/licenses/>. + */ + +
#include "inspircd.h"
#include "threadengine.h"
#include "inspircd_namedpipe.h"
diff --git a/win/inspircd_namedpipe.h b/win/inspircd_namedpipe.h index eef2c9df0..e6be0e481 100644 --- a/win/inspircd_namedpipe.h +++ b/win/inspircd_namedpipe.h @@ -1,3 +1,23 @@ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net> + * Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc> + * + * This file is part of InspIRCd. InspIRCd 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, version 2. + * + * 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, see <http://www.gnu.org/licenses/>. + */ + + #ifndef INSPIRCD_NAMEDPIPE #define INSPIRCD_NAMEDPIPE diff --git a/win/inspircd_win32wrapper.cpp b/win/inspircd_win32wrapper.cpp index 8dcf7b757..43ca87240 100644 --- a/win/inspircd_win32wrapper.cpp +++ b/win/inspircd_win32wrapper.cpp @@ -1,16 +1,28 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2011 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2011 Adam <Adam@anope.org> + * Copyright (C) 2007, 2009 Dennis Friis <peavey@inspircd.org> + * Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org> + * Copyright (C) 2007-2009 Craig Edwards <craigedwards@brainbox.cc> + * Copyright (C) 2008 John Brooks <john.brooks@dereferenced.net> + * Copyright (C) 2007 Burlex <???@???> + * Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net> * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This file is part of InspIRCd. InspIRCd 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, version 2. * - * --------------------------------------------------- + * 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, see <http://www.gnu.org/licenses/>. */ + #include "inspircd_win32wrapper.h" #include "inspircd.h" #include "configreader.h" diff --git a/win/inspircd_win32wrapper.h b/win/inspircd_win32wrapper.h index 4584a4356..85572fd64 100644 --- a/win/inspircd_win32wrapper.h +++ b/win/inspircd_win32wrapper.h @@ -1,16 +1,24 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * Copyright (C) 2007 Dennis Friis <peavey@inspircd.org> + * Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc> + * Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net> * - * InspIRCd: (C) 2002-2011 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * This file is part of InspIRCd. InspIRCd 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, version 2. * - * This program is free but copyrighted software; see - * the file COPYING for details. + * 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, see <http://www.gnu.org/licenses/>. */ + /* Windows Port Wrapper Functions/Definitions By Burlex */ diff --git a/win/resource.rc b/win/resource.rc index 0a0bf76bf..db2ae045e 100644 --- a/win/resource.rc +++ b/win/resource.rc @@ -22,7 +22,7 @@ BEGIN VALUE "FileDescription", "InspIRCd\0"
VALUE "FileVersion", "2, 0, 0, 0\0"
VALUE "InternalName", "InspIRCd\0"
- VALUE "LegalCopyright", "Copyright (c) 2011 InspIRCd Development Team\0"
+ VALUE "LegalCopyright", "Copyright (c) 2012 InspIRCd Development Team\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "inspircd.exe\0"
VALUE "PrivateBuild", "\0"
diff --git a/win/win32service.cpp b/win/win32service.cpp index 1ef27a4c7..1d4cbad3b 100644 --- a/win/win32service.cpp +++ b/win/win32service.cpp @@ -1,15 +1,22 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2011 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2008 Craig Edwards <craigedwards@brainbox.cc> * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This file is part of InspIRCd. InspIRCd 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, version 2. * - * --------------------------------------------------- + * 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, see <http://www.gnu.org/licenses/>. */ + + #include "inspircd_config.h" #include "inspircd.h" #include "exitcodes.h" diff --git a/win/win32service.h b/win/win32service.h index 99e1c7533..b33a53c28 100644 --- a/win/win32service.h +++ b/win/win32service.h @@ -1,3 +1,21 @@ +/* + * InspIRCd -- Internet Relay Chat Daemon + * + * + * This file is part of InspIRCd. InspIRCd 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, version 2. + * + * 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, see <http://www.gnu.org/licenses/>. + */ + + #ifndef WIN32SERVICE_H #define WIN32SERVICE_H |