Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'include/Version.h')
-rw-r--r--include/Version.h22
1 files changed, 14 insertions, 8 deletions
diff --git a/include/Version.h b/include/Version.h
index f09cb11a6..bfe3c0707 100644
--- a/include/Version.h
+++ b/include/Version.h
@@ -1,12 +1,17 @@
// Notes:
-// * Do not use /* */ since ISPP is buggy and it will throw an error.
+// * Do not use /* comments */ since ISPP is buggy and it will throw an error.
+//
// * NO_VERSION_REV_NEEDED is defined in those cases where we don't need the revision
-// number, but only the major/minor version so the compiler does not rebuild everything.
-// It's used in mpcresources and mpciconlib projects.
+// number, but only the major/minor/patch version so the compiler does not rebuild
+// everything. It's used in the mpcresources and the mpciconlib projects.
+//
// * ISPP_IS_BUGGY is defined in the installer script only and it's just a workaround
// for ISPP being buggy and throwing an error.
+//
// * DIRECTX_SDK_DATE is the date of the DirectX SDK used for compilation and it's used
// in the error message in mpc-hc and in the installer when the DX runtime is out of date.
+//
+// * DIRECTX_SDK_NUMBER is used in the installer when the DX runtime is out of date.
#pragma once
@@ -19,16 +24,17 @@
#define MPC_VERSION_MAJOR 1
#define MPC_VERSION_MINOR 4
-#define MPC_VERSION_PATCH 0
+#define MPC_VERSION_PATCH 1
#define MPC_COMP_NAME "MPC-HC Team"
#define MPC_COPYRIGHT "Copyright (C) 2002-2011 see AUTHORS file"
#ifndef ISPP_IS_BUGGY
-#define MPC_VERSION MPC_VERSION_MAJOR,MPC_VERSION_MINOR,MPC_VERSION_REV,MPC_VERSION_PATCH
-#define MPC_VERSION_STR MAKE_STR(MPC_VERSION_MAJOR) ", " MAKE_STR(MPC_VERSION_MINOR) ", " MAKE_STR(MPC_VERSION_REV) ", " MAKE_STR(MPC_VERSION_PATCH)
-#define MPC_VERSION_SHORT MPC_VERSION_MAJOR,MPC_VERSION_MINOR,0,0
-#define MPC_VERSION_SHORT_STR MAKE_STR(MPC_VERSION_MAJOR) ", " MAKE_STR(MPC_VERSION_MINOR) ", 0, 0"
+#define MPC_VERSION MPC_VERSION_MAJOR,MPC_VERSION_MINOR,MPC_VERSION_PATCH,MPC_VERSION_REV
+#define MPC_VERSION_STR MAKE_STR(MPC_VERSION_MAJOR) ", " MAKE_STR(MPC_VERSION_MINOR) ", " MAKE_STR(MPC_VERSION_PATCH) ", " MAKE_STR(MPC_VERSION_REV)
+#define MPC_VERSION_SHORT MPC_VERSION_MAJOR,MPC_VERSION_MINOR,MPC_VERSION_PATCH,0
+#define MPC_VERSION_SHORT_STR MAKE_STR(MPC_VERSION_MAJOR) ", " MAKE_STR(MPC_VERSION_MINOR) ", " MAKE_STR(MPC_VERSION_PATCH) ", 0"
#endif
#define DIRECTX_SDK_DATE "June 2010"
+#define DIRECTX_SDK_NUMBER "43"