diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-05-18 21:47:51 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-05-18 21:47:51 +0000 |
commit | 0a62eb9bdccf5c6b1e83b7f025859e4ca005f4f2 (patch) | |
tree | 51b3c8113b250f97ee7c6416807a430466c8e284 /plugins/updater/options.h | |
parent | e328df9bdc816810545b91dccd52e7741e962dc0 (diff) |
goodbye updater
git-svn-id: http://svn.miranda-ng.org/main/trunk@58 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/updater/options.h')
-rw-r--r-- | plugins/updater/options.h | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/plugins/updater/options.h b/plugins/updater/options.h deleted file mode 100644 index ccaaacf1d1..0000000000 --- a/plugins/updater/options.h +++ /dev/null @@ -1,49 +0,0 @@ -#ifndef _OPTIONS_INC
-#define _OPTIONS_INC
-
-#include "services.h"
-#include "icons.h"
-
-typedef enum {VR_MAJOR, VR_MINOR, VR_RELEASE, VR_BUILD} VersionRequirement;
-
-typedef struct Options_tag {
- bool check_on_startup;
- bool check_once;
- bool check_daily;
- bool no_conf_idle;
- bool backup;
- TCHAR temp_folder[MAX_PATH];
- TCHAR backup_folder[MAX_PATH];
- TCHAR data_folder[MAX_PATH];
- bool use_xml_backend;
- bool start_offline;
- bool popup_notify;
- bool set_colours;
- bool restart_menu_item;
- bool update_and_exit_menu_item;
- COLORREF bkCol;
- COLORREF textCol;
- VersionRequirement ver_req;
- bool save_zips;
- bool no_unzip;
- bool auto_dll_only;
- TCHAR zip_folder[MAX_PATH];
-} Options;
-
-extern Options options;
-
-extern HWND hwndOptions;
-
-#define WMU_CHECKING (WM_USER + 41)
-#define WMU_DONECHECKING (WM_USER + 42)
-
-
-int OptInit(WPARAM wParam, LPARAM lParam);
-
-void LoadOptions();
-void SaveOptions();
-
-// do this after icolib support has been handled
-void InitOptionsMenuItems();
-
-#endif
|