]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - win/inspircd_win32wrapper.cpp
Update copyright headers.
[user/henk/code/inspircd.git] / win / inspircd_win32wrapper.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2014 Attila Molnar <attilamolnar@hush.com>
5  *   Copyright (C) 2013, 2019, 2021 Sadie Powell <sadie@witchery.services>
6  *   Copyright (C) 2013 ChrisTX <xpipe@hotmail.de>
7  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
8  *   Copyright (C) 2011 Adam <Adam@anope.org>
9  *   Copyright (C) 2007-2008 Craig Edwards <brain@inspircd.org>
10  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
11  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
12  *
13  * This file is part of InspIRCd.  InspIRCd is free software: you can
14  * redistribute it and/or modify it under the terms of the GNU General Public
15  * License as published by the Free Software Foundation, version 2.
16  *
17  * This program is distributed in the hope that it will be useful, but WITHOUT
18  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
19  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
24  */
25
26
27 #include "inspircd_win32wrapper.h"
28 #include "inspircd.h"
29 #include "configreader.h"
30 #include <string>
31 #include "ya_getopt.c"
32
33 CWin32Exception::CWin32Exception() : exception()
34 {
35         dwErrorCode = GetLastError();
36         if( FormatMessageA( FORMAT_MESSAGE_FROM_SYSTEM | FORMAT_MESSAGE_IGNORE_INSERTS, NULL, dwErrorCode, MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT), (LPSTR)szErrorString, _countof(szErrorString), NULL) == 0 )
37                 sprintf_s(szErrorString, _countof(szErrorString), "Error code: %u", dwErrorCode);
38         for (size_t i = 0; i < _countof(szErrorString); i++)
39         {
40                 if ((szErrorString[i] == '\r') || (szErrorString[i] == '\n'))
41                         szErrorString[i] = 0;
42         }
43 }
44
45 CWin32Exception::CWin32Exception(const CWin32Exception& other)
46 {
47         strcpy_s(szErrorString, _countof(szErrorString), other.szErrorString);
48 }
49
50 const char* CWin32Exception::what() const throw()
51 {
52         return szErrorString;
53 }
54
55 DWORD CWin32Exception::GetErrorCode()
56 {
57         return dwErrorCode;
58 }
59
60 WindowsStream::WindowsStream(DWORD handle)
61         : BackgroundColor(0)
62         , ForegroundColor(FOREGROUND_RED | FOREGROUND_BLUE | FOREGROUND_GREEN)
63 {
64         this->Handle = GetStdHandle(handle);
65         CONSOLE_SCREEN_BUFFER_INFO bufinf;
66         if (GetConsoleScreenBufferInfo(this->Handle, &bufinf))
67         {
68                 this->BackgroundColor = bufinf.wAttributes & 0x00F0;
69                 this->ForegroundColor = bufinf.wAttributes & 0x00FF;
70         }
71 }