made the signalproxy compile with MSVC
[quassel.git] / src / common / global.h
index dadbb91..3963367 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005 by the Quassel Project                             *
+ *   Copyright (C) 2005-08 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
 // Enable some shortcuts and stuff
 //#define DEVELMODE
 
-/** The protocol version we use fo the communication between core and GUI */
-#define GUI_PROTOCOL 4
-
-//#define DEFAULT_PORT 4242
-
 /* Some global stuff */
 
 namespace Global {
+
+  extern QString quasselVersion;
+  extern QString quasselDate;
+  extern uint quasselBuild;
+
+  //! Minimum client build number the core needs
+  extern uint clientBuildNeeded;
+  extern QString clientVersionNeeded;
+
+  //! Minimum core build number the client needs
+  extern uint coreBuildNeeded;
+  extern QString coreVersionNeeded;
+
   // We need different config (QSettings) files for client and gui, since the core cannot work with GUI types
   // Set these here. They're used in ClientSettings and CoreSettings.
   const QString coreApplicationName = "Quassel Core";
@@ -46,6 +54,6 @@ namespace Global {
   extern unsigned int defaultPort;
 
   void registerMetaTypes();
-}
+};
 
 #endif