From c192d7eadcafeab4fa2f9db481c58ce8306804b7 Mon Sep 17 00:00:00 2001 From: jaynus Date: Sat, 2 May 2015 14:18:42 -0700 Subject: [PATCH] Return version. --- extensions/clipboard/ace_clipboard.cpp | 94 ++++++++++++++------------ 1 file changed, 51 insertions(+), 43 deletions(-) diff --git a/extensions/clipboard/ace_clipboard.cpp b/extensions/clipboard/ace_clipboard.cpp index 59c0f802fc..619ba0485d 100644 --- a/extensions/clipboard/ace_clipboard.cpp +++ b/extensions/clipboard/ace_clipboard.cpp @@ -1,31 +1,38 @@ -/* - * ace_clipboard.cpp - * - * Takes a string and copies it to the clipboard; bypasses arma 8k clippy limit. - * - * Takes: - * Localized string as string - * - * Returns: - * None - */ -#include "ace_common.h" -#include -#include - -extern "C" { - __declspec (dllexport) void __stdcall RVExtension(char *output, int outputSize, const char *function); -}; - -void __stdcall RVExtension(char *output, int outputSize, const char *function) { - std::string input(function); - std::string result; - - if (input.length() < 1) - return; - - #ifdef _WIN32 - +/* + * ace_clipboard.cpp + * + * Takes a string and copies it to the clipboard; bypasses arma 8k clippy limit. + * + * Takes: + * Localized string as string + * + * Returns: + * None + */ +#include "ace_common.h" +#include +#include + +extern "C" { + __declspec (dllexport) void __stdcall RVExtension(char *output, int outputSize, const char *function); +}; + +void __stdcall RVExtension(char *output, int outputSize, const char *function) { + std::string input(function); + std::string result; + + if (input.length() < 1) + return; + + if (!strcmp(function, "version")) { + strncpy(output, ACE_FULL_VERSION_STR, outputSize); + return; + } + + else { + + #ifdef _WIN32 + HGLOBAL glob = GlobalAlloc(GMEM_FIXED, input.length()+1); memcpy(glob, input.c_str(), input.length()); @@ -40,18 +47,19 @@ void __stdcall RVExtension(char *output, int outputSize, const char *function) { if (!SetClipboardData(CF_TEXT, glob)) { result = "SetClipboardData() failed, GetLastError=" + GetLastError(); } else { - if (!CloseClipboard()) { - result = "CloseClipboard() failed, GetLastError=" + GetLastError(); - } - } - } - } - - end: - memcpy(output, result.c_str(), result.length()+1); - - #endif - - -} - + if (!CloseClipboard()) { + result = "CloseClipboard() failed, GetLastError=" + GetLastError(); + } + } + } + } + +end: + if(result.length() > 1) + memcpy(output, result.c_str(), result.length()+1); + + #endif + + +} +