From a8ca6c3c2b81022923d1724fdb933ec12db8b3b4 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 24 Feb 2013 09:10:52 +0000 Subject: added version info git-svn-id: http://svn.miranda-ng.org/main/trunk@3749 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Dbx_tree/encryption/ARC4/ARC4_10.vcxproj | 4 +++ .../encryption/ARC4/ARC4_10.vcxproj.filters | 8 +++++ plugins/Dbx_tree/encryption/ARC4/ARC4_11.vcxproj | 4 +++ .../encryption/ARC4/ARC4_11.vcxproj.filters | 8 +++++ plugins/Dbx_tree/encryption/ARC4/res/Version.rc | 38 ++++++++++++++++++++++ plugins/Dbx_tree/encryption/ARC4/src/Version.h | 11 +++++++ 6 files changed, 73 insertions(+) create mode 100644 plugins/Dbx_tree/encryption/ARC4/res/Version.rc create mode 100644 plugins/Dbx_tree/encryption/ARC4/src/Version.h (limited to 'plugins/Dbx_tree/encryption/ARC4') diff --git a/plugins/Dbx_tree/encryption/ARC4/ARC4_10.vcxproj b/plugins/Dbx_tree/encryption/ARC4/ARC4_10.vcxproj index d5e1d803cf..a4964f8490 100644 --- a/plugins/Dbx_tree/encryption/ARC4/ARC4_10.vcxproj +++ b/plugins/Dbx_tree/encryption/ARC4/ARC4_10.vcxproj @@ -158,10 +158,14 @@ + + + + diff --git a/plugins/Dbx_tree/encryption/ARC4/ARC4_10.vcxproj.filters b/plugins/Dbx_tree/encryption/ARC4/ARC4_10.vcxproj.filters index 125c2ecc43..a365d9adcd 100644 --- a/plugins/Dbx_tree/encryption/ARC4/ARC4_10.vcxproj.filters +++ b/plugins/Dbx_tree/encryption/ARC4/ARC4_10.vcxproj.filters @@ -21,10 +21,18 @@ Header Files + + Header Files + Source Files + + + Resource Files + + \ No newline at end of file diff --git a/plugins/Dbx_tree/encryption/ARC4/ARC4_11.vcxproj b/plugins/Dbx_tree/encryption/ARC4/ARC4_11.vcxproj index 3b6b57d0f9..b0b022ac97 100644 --- a/plugins/Dbx_tree/encryption/ARC4/ARC4_11.vcxproj +++ b/plugins/Dbx_tree/encryption/ARC4/ARC4_11.vcxproj @@ -162,10 +162,14 @@ + + + + diff --git a/plugins/Dbx_tree/encryption/ARC4/ARC4_11.vcxproj.filters b/plugins/Dbx_tree/encryption/ARC4/ARC4_11.vcxproj.filters index 125c2ecc43..a365d9adcd 100644 --- a/plugins/Dbx_tree/encryption/ARC4/ARC4_11.vcxproj.filters +++ b/plugins/Dbx_tree/encryption/ARC4/ARC4_11.vcxproj.filters @@ -21,10 +21,18 @@ Header Files + + Header Files + Source Files + + + Resource Files + + \ No newline at end of file diff --git a/plugins/Dbx_tree/encryption/ARC4/res/Version.rc b/plugins/Dbx_tree/encryption/ARC4/res/Version.rc new file mode 100644 index 0000000000..5bfbab4754 --- /dev/null +++ b/plugins/Dbx_tree/encryption/ARC4/res/Version.rc @@ -0,0 +1,38 @@ +// Microsoft Visual C++ generated resource script. +// +#ifdef APSTUDIO_INVOKED +#error this file is not editable by Microsoft Visual C++ +#endif //APSTUDIO_INVOKED + +#include "afxres.h" +#include "..\src\version.h" + +VS_VERSION_INFO VERSIONINFO + FILEVERSION __FILEVERSION_STRING + PRODUCTVERSION __FILEVERSION_STRING + FILEFLAGSMASK 0x17L +#ifdef _DEBUG + FILEFLAGS 0x1L +#else + FILEFLAGS 0x0L +#endif + FILEOS 0x4L + FILETYPE 0x0L + FILESUBTYPE 0x0L +BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "000004b0" + BEGIN + VALUE "FileDescription", __DESCRIPTION + VALUE "InternalName", __PLUGIN_NAME + VALUE "LegalCopyright", __COPYRIGHT + VALUE "OriginalFilename", __FILENAME + VALUE "ProductName", __PLUGIN_NAME + END + END + BLOCK "VarFileInfo" + BEGIN + VALUE "Translation", 0x0, 1200 + END +END diff --git a/plugins/Dbx_tree/encryption/ARC4/src/Version.h b/plugins/Dbx_tree/encryption/ARC4/src/Version.h new file mode 100644 index 0000000000..d7af928a34 --- /dev/null +++ b/plugins/Dbx_tree/encryption/ARC4/src/Version.h @@ -0,0 +1,11 @@ +#define __MAJOR_VERSION 0 +#define __MINOR_VERSION 0 +#define __RELEASE_NUM 0 +#define __BUILD_NUM 1 + +#define __FILEVERSION_STRING __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM + +#define __PLUGIN_NAME "ARC4" +#define __FILENAME "ARC4.dll" +#define __DESCRIPTION "Streamcipher - 8bit step, fast." +#define __COPYRIGHT "© 1987 Ron Rivest" -- cgit v1.2.3