diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-23 12:21:37 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-07-23 12:21:37 +0000 |
commit | 7a8e3055b162b2572152ed951ebcefd60182edbc (patch) | |
tree | 415d5bc98ce406df04f8e9b19de99a10e1c275a1 /plugins/Popup/res/version.rc | |
parent | 177c84716db384c8be095219c58d0a68f87101fe (diff) |
PasteIt, PopUp, ProfileManager: changed folder structure
git-svn-id: http://svn.miranda-ng.org/main/trunk@1117 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Popup/res/version.rc')
-rw-r--r-- | plugins/Popup/res/version.rc | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/plugins/Popup/res/version.rc b/plugins/Popup/res/version.rc new file mode 100644 index 0000000000..85065fb60c --- /dev/null +++ b/plugins/Popup/res/version.rc @@ -0,0 +1,44 @@ +#ifdef APSTUDIO_INVOKED
+#error this file is not editable by Microsoft Visual C++
+#endif //APSTUDIO_INVOKED
+
+#include <windows.h> // include for version info constants
+#include "..\src\version.h"
+
+//
+// TO CHANGE VERSION INFORMATION, EDIT PROJECT OPTIONS...
+//
+VS_VERSION_INFO VERSIONINFO
+ FILEVERSION __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+ PRODUCTVERSION __MAJOR_VERSION,__MINOR_VERSION,__RELEASE_NUM,__BUILD_NUM
+ FILEFLAGSMASK 0x3fL
+#ifdef _DEBUG
+ FILEFLAGS 0x21L
+#else
+ FILEFLAGS 0x20L
+#endif
+ FILEOS 0x4L
+ FILETYPE 0x2L
+ FILESUBTYPE 0x0L
+BEGIN
+ BLOCK "StringFileInfo"
+ BEGIN
+ BLOCK "000004b0"
+ BEGIN
+ VALUE "Comments", POPUP_DESCRIPTION
+ VALUE "CompanyName", "MPK"
+ VALUE "FileDescription", "Popup Plus plugin for Miranda IM"
+ VALUE "FileVersion", __VERSION_STRING_DOT
+ VALUE "InternalName", MODULNAME
+ VALUE "LegalCopyright", POPUP_COPYRIGHT
+ VALUE "OriginalFilename", POPUP_FILENAME
+ VALUE "ProductName", POPUP_DISPLAYNAME
+ VALUE "ProductVersion", __VERSION_STRING_DOT
+ END
+ END
+ BLOCK "VarFileInfo"
+ BEGIN
+ VALUE "Translation", 0x0, 1200
+ END
+END
+
|