diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2016-04-16 12:44:19 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2016-04-16 12:44:19 +0000 |
commit | d368658d9c25278e62023be7ebe573d04309be43 (patch) | |
tree | 8911a7e4c7f029243efc2d2967bcd8a6cef284cf /plugins/PluginUpdater/src/stdafx.h | |
parent | 403ee5e18b2393a430ff5e9d3f0cb5feccdb341e (diff) |
PluginUpdater:
- more fixes for the options dialog
- Added feature to install a list of predefined item:
In module PluginUpdaterNewFiles, create a BYTE entry for each item you want to install
(Name as in the options dialog, BYTE value 1)
When you open "Available components list", those entries will be preselected.
git-svn-id: http://svn.miranda-ng.org/main/trunk@16675 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/PluginUpdater/src/stdafx.h')
-rw-r--r-- | plugins/PluginUpdater/src/stdafx.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/PluginUpdater/src/stdafx.h b/plugins/PluginUpdater/src/stdafx.h index da8f379c07..9efc5b88a1 100644 --- a/plugins/PluginUpdater/src/stdafx.h +++ b/plugins/PluginUpdater/src/stdafx.h @@ -117,11 +117,13 @@ extern struct PlugOptions #define DEFAULT_OPP_BITS 32
#define OLD_FILENAME FILENAME_X64
#define NEW_FILENAME FILENAME_X32
+ #define IDC_CHANGE_PLATFORM IDC_X86
#else
#define DEFAULT_BITS 32
#define DEFAULT_OPP_BITS 64
#define OLD_FILENAME FILENAME_X32
#define NEW_FILENAME FILENAME_X64
+ #define IDC_CHANGE_PLATFORM IDC_X64
#endif
#define PLUGIN_INFO_URL _T("http://miranda-ng.org/p/%s")
@@ -145,6 +147,7 @@ extern struct PlugOptions #define DB_SETTING_DONT_SWITCH_TO_STABLE "DontSwitchToStable"
#define DB_SETTING_CHANGEPLATFORM "ChangePlatform"
#define DB_MODULE_FILES MODNAME "Files"
+#define DB_MODULE_NEW_FILES MODNAME "NewFiles"
#define MAX_RETRIES 3
|