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

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidebeatrici <davidebeatrici@gmail.com>2016-06-24 00:32:22 +0300
committerMikkel Krautz <mikkel@krautz.dk>2016-06-24 00:32:37 +0300
commited8748dc07536c2ca67f2e803bf183c20826ee42 (patch)
tree5d75edf1cccafdd15b96a9b4bbc9ad358a2c295f /plugins/sto
parent51af7852474d92a7d0514a0f57903551c3595f97 (diff)
plugins: update memory addresses retrieval to use procptr32_t/procptr64_t.
Diffstat (limited to 'plugins/sto')
-rw-r--r--plugins/sto/sto.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/plugins/sto/sto.cpp b/plugins/sto/sto.cpp
index eced009e5..ede158b56 100644
--- a/plugins/sto/sto.cpp
+++ b/plugins/sto/sto.cpp
@@ -3,11 +3,9 @@
// that can be found in the LICENSE file at the root of the
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
-#include "../mumble_plugin_win32.h"
+#include "../mumble_plugin_win32_x86.h"
-static BYTE *identptr;
-static BYTE *contextptr;
-static BYTE *posptr;
+static procptr32_t identptr, contextptr, posptr;
static void inline u8(std::wstring &dst, const std::string &src) {
if (src.length() > static_cast<size_t>(std::numeric_limits<int>::max())) {