]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - win/inspircd_namedpipe.h
Replace copyright headers with headers granting specific authors copyright
[user/henk/code/inspircd.git] / win / inspircd_namedpipe.h
index 9985a802631ec08771cea324580a36df63f572aa..e6be0e4816d8fce3e0c9c0a083a4247a84a99db6 100644 (file)
@@ -1,22 +1,39 @@
-#ifndef INSPIRCD_NAMEDPIPE\r
-#define INSPIRCD_NAMEDPIPE\r
-\r
-#include "threadengine.h"\r
-#include <windows.h>\r
-\r
-class InspIRCd;\r
+/*
+ * 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
+
+#include "threadengine.h"
+#include <windows.h>
 
 class IPCThread : public Thread
 {
-       BOOL Connected;\r
-       DWORD BytesRead;\r
-       BOOL Success;\r
+       BOOL Connected;
+       DWORD BytesRead;
+       BOOL Success;
        HANDLE Pipe;
-       InspIRCd* ServerInstance;
        char status[MAXBUF];
        int result;
  public:
-       IPCThread(InspIRCd* Instance);
+       IPCThread();
        virtual ~IPCThread();
        virtual void Run();
        const char GetStatus();
@@ -28,12 +45,11 @@ class IPCThread : public Thread
 class IPC
 {
  private:
-       InspIRCd* ServerInstance;
        IPCThread* thread;
  public:
-       IPC(InspIRCd* Srv);
+       IPC();
        void Check();
        ~IPC();
 };
 
-#endif
\ No newline at end of file
+#endif