From 22b4701daaf78b2e95d51d2eb487a5958ec4e73e Mon Sep 17 00:00:00 2001 From: Vadim Dashevskiy Date: Sun, 26 Jul 2015 11:03:23 +0000 Subject: PackUpdater: common project git-svn-id: http://svn.miranda-ng.org/main/trunk@14717 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/PackUpdater/PackUpdater.vcxproj | 33 ++++ plugins/PackUpdater/PackUpdater.vcxproj.filters | 4 + plugins/PackUpdater/PackUpdater_10.vcxproj | 196 -------------------- plugins/PackUpdater/PackUpdater_10.vcxproj.filters | 59 ------ plugins/PackUpdater/PackUpdater_12.vcxproj | 201 --------------------- plugins/PackUpdater/PackUpdater_12.vcxproj.filters | 59 ------ plugins/PackUpdater/PackUpdater_14.vcxproj | 201 --------------------- plugins/PackUpdater/PackUpdater_14.vcxproj.filters | 59 ------ plugins/PackUpdater/Src/Common.h | 122 ------------- plugins/PackUpdater/Src/Events.cpp | 2 +- plugins/PackUpdater/Src/Notifications.cpp | 2 +- plugins/PackUpdater/Src/Options.cpp | 2 +- plugins/PackUpdater/Src/PackUpdater.cpp | 2 +- plugins/PackUpdater/Src/Utils.cpp | 2 +- plugins/PackUpdater/Src/stdafx.cpp | 18 -- plugins/PackUpdater/Src/stdafx.cxx | 18 ++ plugins/PackUpdater/Src/stdafx.h | 122 +++++++++++++ 17 files changed, 182 insertions(+), 920 deletions(-) create mode 100644 plugins/PackUpdater/PackUpdater.vcxproj create mode 100644 plugins/PackUpdater/PackUpdater.vcxproj.filters delete mode 100644 plugins/PackUpdater/PackUpdater_10.vcxproj delete mode 100644 plugins/PackUpdater/PackUpdater_10.vcxproj.filters delete mode 100644 plugins/PackUpdater/PackUpdater_12.vcxproj delete mode 100644 plugins/PackUpdater/PackUpdater_12.vcxproj.filters delete mode 100644 plugins/PackUpdater/PackUpdater_14.vcxproj delete mode 100644 plugins/PackUpdater/PackUpdater_14.vcxproj.filters delete mode 100644 plugins/PackUpdater/Src/Common.h delete mode 100644 plugins/PackUpdater/Src/stdafx.cpp create mode 100644 plugins/PackUpdater/Src/stdafx.cxx create mode 100644 plugins/PackUpdater/Src/stdafx.h (limited to 'plugins/PackUpdater') diff --git a/plugins/PackUpdater/PackUpdater.vcxproj b/plugins/PackUpdater/PackUpdater.vcxproj new file mode 100644 index 0000000000..b932875335 --- /dev/null +++ b/plugins/PackUpdater/PackUpdater.vcxproj @@ -0,0 +1,33 @@ + + + + + Debug + Win32 + + + Debug + x64 + + + Release + Win32 + + + Release + x64 + + + + PackUpdater + {20413125-4D68-4751-8062-DDA026DDABF1} + + + + + + + Sync + + + \ No newline at end of file diff --git a/plugins/PackUpdater/PackUpdater.vcxproj.filters b/plugins/PackUpdater/PackUpdater.vcxproj.filters new file mode 100644 index 0000000000..de5ad9f66c --- /dev/null +++ b/plugins/PackUpdater/PackUpdater.vcxproj.filters @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/plugins/PackUpdater/PackUpdater_10.vcxproj b/plugins/PackUpdater/PackUpdater_10.vcxproj deleted file mode 100644 index cda139de5c..0000000000 --- a/plugins/PackUpdater/PackUpdater_10.vcxproj +++ /dev/null @@ -1,196 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - PackUpdater - {20413125-4D68-4751-8062-DDA026DDABF1} - - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - true - - - DynamicLibrary - Unicode - - - DynamicLibrary - Unicode - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - EditAndContinue - 4996 - Use - Common.h - - - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin10\lib - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level3 - 4996 - Use - Common.h - - - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin10\lib - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - Full - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - Level3 - 4996 - Use - Common.h - - - Windows - true - true - false - $(IntDir)$(TargetName).lib - - - true - $(ProfileDir)..\..\bin10\lib - /PDBALTPATH:%_PDB% %(AdditionalOptions) - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - Full - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - Level3 - 4996 - Use - Common.h - - - Windows - true - true - false - $(IntDir)$(TargetName).lib - true - $(ProfileDir)..\..\bin10\lib - /PDBALTPATH:%_PDB% %(AdditionalOptions) - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - - - - - - - - - - Create - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/PackUpdater/PackUpdater_10.vcxproj.filters b/plugins/PackUpdater/PackUpdater_10.vcxproj.filters deleted file mode 100644 index df206c7835..0000000000 --- a/plugins/PackUpdater/PackUpdater_10.vcxproj.filters +++ /dev/null @@ -1,59 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/plugins/PackUpdater/PackUpdater_12.vcxproj b/plugins/PackUpdater/PackUpdater_12.vcxproj deleted file mode 100644 index afe2fcfd7c..0000000000 --- a/plugins/PackUpdater/PackUpdater_12.vcxproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - PackUpdater - {20413125-4D68-4751-8062-DDA026DDABF1} - - - - DynamicLibrary - Unicode - true - v120_xp - - - DynamicLibrary - Unicode - true - v120_xp - - - DynamicLibrary - Unicode - v120_xp - - - DynamicLibrary - Unicode - v120_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level4 - EditAndContinue - 4996 - Use - Common.h - - - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin12\lib - false - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level4 - 4996 - Use - Common.h - - - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin12\lib - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - Full - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - Level4 - 4996 - Use - Common.h - - - Windows - true - true - false - $(IntDir)$(TargetName).lib - - - true - $(ProfileDir)..\..\bin12\lib - /PDBALTPATH:%_PDB% %(AdditionalOptions) - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - Full - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - Level4 - 4996 - Use - Common.h - - - Windows - true - true - false - $(IntDir)$(TargetName).lib - true - $(ProfileDir)..\..\bin12\lib - /PDBALTPATH:%_PDB% %(AdditionalOptions) - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - - - - - - - - - - Create - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/PackUpdater/PackUpdater_12.vcxproj.filters b/plugins/PackUpdater/PackUpdater_12.vcxproj.filters deleted file mode 100644 index df206c7835..0000000000 --- a/plugins/PackUpdater/PackUpdater_12.vcxproj.filters +++ /dev/null @@ -1,59 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/plugins/PackUpdater/PackUpdater_14.vcxproj b/plugins/PackUpdater/PackUpdater_14.vcxproj deleted file mode 100644 index 2b832cf1c0..0000000000 --- a/plugins/PackUpdater/PackUpdater_14.vcxproj +++ /dev/null @@ -1,201 +0,0 @@ - - - - - Debug - Win32 - - - Debug - x64 - - - Release - Win32 - - - Release - x64 - - - - PackUpdater - {20413125-4D68-4751-8062-DDA026DDABF1} - - - - DynamicLibrary - Unicode - true - v140_xp - - - DynamicLibrary - Unicode - true - v140_xp - - - DynamicLibrary - Unicode - v140_xp - - - DynamicLibrary - Unicode - v140_xp - - - - - - - - - - - - - - - - - - - <_ProjectFileVersion>10.0.30319.1 - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)\Plugins\ - $(SolutionDir)$(Configuration)64\Plugins\ - $(SolutionDir)$(Configuration)\Obj\$(ProjectName)\ - $(SolutionDir)$(Configuration)64\Obj\$(ProjectName)\ - true - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level4 - EditAndContinue - 4996 - Use - Common.h - - - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin14\lib - false - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - Disabled - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - _DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - MultiThreadedDebugDLL - Level4 - 4996 - Use - Common.h - - - true - Windows - false - $(IntDir)$(TargetName).lib - $(ProfileDir)..\..\bin14\lib - - - ..\..\include\msapi - _DEBUG;%(PreprocessorDefinitions) - - - - - Full - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - Level4 - 4996 - Use - Common.h - - - Windows - true - true - false - $(IntDir)$(TargetName).lib - - - true - $(ProfileDir)..\..\bin14\lib - /PDBALTPATH:%_PDB% %(AdditionalOptions) - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - Full - Size - ..\..\include;..\ExternalAPI;%(AdditionalIncludeDirectories) - NDEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions) - Level4 - 4996 - Use - Common.h - - - Windows - true - true - false - $(IntDir)$(TargetName).lib - true - $(ProfileDir)..\..\bin14\lib - /PDBALTPATH:%_PDB% %(AdditionalOptions) - - - ..\..\include\msapi - NDEBUG;%(PreprocessorDefinitions) - - - - - - - - - - - - - - Create - - - - - - - - - - - - \ No newline at end of file diff --git a/plugins/PackUpdater/PackUpdater_14.vcxproj.filters b/plugins/PackUpdater/PackUpdater_14.vcxproj.filters deleted file mode 100644 index df206c7835..0000000000 --- a/plugins/PackUpdater/PackUpdater_14.vcxproj.filters +++ /dev/null @@ -1,59 +0,0 @@ - - - - - {4FC737F1-C7A5-4376-A066-2A32D752A2FF} - cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx - - - {93995380-89BD-4b04-88EB-625FBE52EBFB} - h;hpp;hxx;hm;inl;inc;xsd - - - {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} - rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav - - - - - Header Files - - - Header Files - - - Header Files - - - Header Files - - - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - Source Files - - - - - Resource Files - - - Resource Files - - - \ No newline at end of file diff --git a/plugins/PackUpdater/Src/Common.h b/plugins/PackUpdater/Src/Common.h deleted file mode 100644 index 0c6eeafa2f..0000000000 --- a/plugins/PackUpdater/Src/Common.h +++ /dev/null @@ -1,122 +0,0 @@ -/* -Copyright (C) 2011-2015 Mataes - -This is free software; you can redistribute it and/or -modify it under the terms of the GNU Library General Public -License as published by the Free Software Foundation; either -version 2 of the License, or (at your option) any later version. - -This is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with this file; see the file license.txt. If -not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, -Boston, MA 02111-1307, USA. -*/ - -// Windows Header Files: -#include -#include -#include -#include -#include - -// Miranda header files -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include - -#include "version.h" -#include "resource.h" -#include "Notifications.h" - -#define MODNAME "PackUpdater" -#define MODULEA "Pack Updater" -#define MODULE L"Pack Updater" -#define DEFAULT_UPDATES_FOLDER L"Pack Updates" -typedef std::wstring tString; - -struct FILEURL -{ - TCHAR tszDownloadURL[2048]; - TCHAR tszDiskPath[MAX_PATH]; -}; - -struct FILEINFO -{ - TCHAR tszCurVer[16]; - TCHAR tszNewVer[16]; - TCHAR tszLastVer[16]; - TCHAR tszAdvFolder[256]; - TCHAR tszInfoURL[2048]; - TCHAR tszMessage[5000]; - TCHAR tszDescr[256]; - FILEURL File; - BOOL enabled; - BYTE FileType; - INT FileNum; - BYTE Force; -}; - -#define DEFAULT_REMINDER 1 -#define DEFAULT_UPDATEONSTARTUP 1 -#define DEFAULT_ONLYONCEADAY 0 -#define DEFAULT_UPDATEONPERIOD 0 -#define DEFAULT_PERIOD 1 -#define DEFAULT_PERIODMEASURE 1 -#define DEFAULT_FILECOUNT 0 -#define DEFAULT_FILETYPE 0 //0 - not defined, 1 - pack, 2 - plugin, 3 - icon, 4 - files in miranda root (e.g. langpack, dbtool), 5 - same as 4 without restart - -#define IDINFO 3 -#define IDDOWNLOAD 4 -#define IDDOWNLOADALL 5 - -using std::wstring; -using namespace std; - -extern HINSTANCE hInst; -extern INT FileCount, CurrentFile, Number, UpdatesCount, Period; -extern BOOL Silent, DlgDld; -extern BYTE Reminder, UpdateOnStartup, UpdateOnPeriod, OnlyOnceADay, PeriodMeasure; -extern TCHAR tszRoot[MAX_PATH], tszDialogMsg[2048]; -extern FILEINFO* pFileInfo; -extern FILEURL* pFileUrl; -extern HANDLE hCheckThread; -extern MYOPTIONS MyOptions; -extern aPopups PopupsList[POPUPS]; -extern LPCTSTR Title, Text; -extern HANDLE Timer; - -VOID InitPopupList(); -VOID LoadOptions(); -BOOL NetlibInit(); -VOID IcoLibInit(); -VOID NetlibUnInit(); -INT ModulesLoaded(WPARAM wParam, LPARAM lParam); -INT_PTR MenuCommand(WPARAM wParam, LPARAM lParam); -INT_PTR EmptyFolder(WPARAM wParam, LPARAM lParam); -INT OnPreShutdown(WPARAM wParam, LPARAM lParam); -INT OptInit(WPARAM wParam, LPARAM lParam); -VOID DoCheck(INT iFlag); -BOOL DownloadFile(LPCTSTR tszURL, LPCTSTR tszLocal); -VOID show_popup(HWND hDlg, LPCTSTR Title, LPCTSTR Text, INT Number, INT ActType); -VOID DlgDownloadProc(); -INT_PTR CALLBACK DlgUpdate(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam); -INT_PTR CALLBACK DlgMsgPop(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); -void __stdcall ExitMe(void*); -void __stdcall RestartMe(void*); -BOOL AllowUpdateOnStartup(); -VOID InitTimer(); \ No newline at end of file diff --git a/plugins/PackUpdater/Src/Events.cpp b/plugins/PackUpdater/Src/Events.cpp index 855c3d51cb..27c1229c1b 100644 --- a/plugins/PackUpdater/Src/Events.cpp +++ b/plugins/PackUpdater/Src/Events.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "common.h" +#include "stdafx.h" HANDLE Timer; BOOL Silent; diff --git a/plugins/PackUpdater/Src/Notifications.cpp b/plugins/PackUpdater/Src/Notifications.cpp index 431b5a373a..abb89e65c5 100644 --- a/plugins/PackUpdater/Src/Notifications.cpp +++ b/plugins/PackUpdater/Src/Notifications.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "common.h" +#include "stdafx.h" HWND hDlgDld = NULL; INT UpdatesCount = 0; diff --git a/plugins/PackUpdater/Src/Options.cpp b/plugins/PackUpdater/Src/Options.cpp index 6d3a8588da..a0ecf9820a 100644 --- a/plugins/PackUpdater/Src/Options.cpp +++ b/plugins/PackUpdater/Src/Options.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "common.h" +#include "stdafx.h" LRESULT CALLBACK MyEditProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam) { diff --git a/plugins/PackUpdater/Src/PackUpdater.cpp b/plugins/PackUpdater/Src/PackUpdater.cpp index f293f47ea0..edb74e2ea4 100644 --- a/plugins/PackUpdater/Src/PackUpdater.cpp +++ b/plugins/PackUpdater/Src/PackUpdater.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "common.h" +#include "stdafx.h" HINSTANCE hInst = NULL; diff --git a/plugins/PackUpdater/Src/Utils.cpp b/plugins/PackUpdater/Src/Utils.cpp index 4706dda99c..10dd3a5c05 100644 --- a/plugins/PackUpdater/Src/Utils.cpp +++ b/plugins/PackUpdater/Src/Utils.cpp @@ -17,7 +17,7 @@ not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "Common.h" +#include "stdafx.h" vector Files; BOOL DlgDld; diff --git a/plugins/PackUpdater/Src/stdafx.cpp b/plugins/PackUpdater/Src/stdafx.cpp deleted file mode 100644 index c5fe5abaad..0000000000 --- a/plugins/PackUpdater/Src/stdafx.cpp +++ /dev/null @@ -1,18 +0,0 @@ -/* -Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org) - -This program is free software; you can redistribute it and/or -modify it under the terms of the GNU General Public License -as published by the Free Software Foundation version 2 -of the License. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see . -*/ - -#include "common.h" \ No newline at end of file diff --git a/plugins/PackUpdater/Src/stdafx.cxx b/plugins/PackUpdater/Src/stdafx.cxx new file mode 100644 index 0000000000..6fb37564b7 --- /dev/null +++ b/plugins/PackUpdater/Src/stdafx.cxx @@ -0,0 +1,18 @@ +/* +Copyright (C) 2012-15 Miranda NG project (http://miranda-ng.org) + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation version 2 +of the License. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + +#include "stdafx.h" \ No newline at end of file diff --git a/plugins/PackUpdater/Src/stdafx.h b/plugins/PackUpdater/Src/stdafx.h new file mode 100644 index 0000000000..0c6eeafa2f --- /dev/null +++ b/plugins/PackUpdater/Src/stdafx.h @@ -0,0 +1,122 @@ +/* +Copyright (C) 2011-2015 Mataes + +This is free software; you can redistribute it and/or +modify it under the terms of the GNU Library General Public +License as published by the Free Software Foundation; either +version 2 of the License, or (at your option) any later version. + +This is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Library General Public License for more details. + +You should have received a copy of the GNU Library General Public +License along with this file; see the file license.txt. If +not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, +Boston, MA 02111-1307, USA. +*/ + +// Windows Header Files: +#include +#include +#include +#include +#include + +// Miranda header files +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "version.h" +#include "resource.h" +#include "Notifications.h" + +#define MODNAME "PackUpdater" +#define MODULEA "Pack Updater" +#define MODULE L"Pack Updater" +#define DEFAULT_UPDATES_FOLDER L"Pack Updates" +typedef std::wstring tString; + +struct FILEURL +{ + TCHAR tszDownloadURL[2048]; + TCHAR tszDiskPath[MAX_PATH]; +}; + +struct FILEINFO +{ + TCHAR tszCurVer[16]; + TCHAR tszNewVer[16]; + TCHAR tszLastVer[16]; + TCHAR tszAdvFolder[256]; + TCHAR tszInfoURL[2048]; + TCHAR tszMessage[5000]; + TCHAR tszDescr[256]; + FILEURL File; + BOOL enabled; + BYTE FileType; + INT FileNum; + BYTE Force; +}; + +#define DEFAULT_REMINDER 1 +#define DEFAULT_UPDATEONSTARTUP 1 +#define DEFAULT_ONLYONCEADAY 0 +#define DEFAULT_UPDATEONPERIOD 0 +#define DEFAULT_PERIOD 1 +#define DEFAULT_PERIODMEASURE 1 +#define DEFAULT_FILECOUNT 0 +#define DEFAULT_FILETYPE 0 //0 - not defined, 1 - pack, 2 - plugin, 3 - icon, 4 - files in miranda root (e.g. langpack, dbtool), 5 - same as 4 without restart + +#define IDINFO 3 +#define IDDOWNLOAD 4 +#define IDDOWNLOADALL 5 + +using std::wstring; +using namespace std; + +extern HINSTANCE hInst; +extern INT FileCount, CurrentFile, Number, UpdatesCount, Period; +extern BOOL Silent, DlgDld; +extern BYTE Reminder, UpdateOnStartup, UpdateOnPeriod, OnlyOnceADay, PeriodMeasure; +extern TCHAR tszRoot[MAX_PATH], tszDialogMsg[2048]; +extern FILEINFO* pFileInfo; +extern FILEURL* pFileUrl; +extern HANDLE hCheckThread; +extern MYOPTIONS MyOptions; +extern aPopups PopupsList[POPUPS]; +extern LPCTSTR Title, Text; +extern HANDLE Timer; + +VOID InitPopupList(); +VOID LoadOptions(); +BOOL NetlibInit(); +VOID IcoLibInit(); +VOID NetlibUnInit(); +INT ModulesLoaded(WPARAM wParam, LPARAM lParam); +INT_PTR MenuCommand(WPARAM wParam, LPARAM lParam); +INT_PTR EmptyFolder(WPARAM wParam, LPARAM lParam); +INT OnPreShutdown(WPARAM wParam, LPARAM lParam); +INT OptInit(WPARAM wParam, LPARAM lParam); +VOID DoCheck(INT iFlag); +BOOL DownloadFile(LPCTSTR tszURL, LPCTSTR tszLocal); +VOID show_popup(HWND hDlg, LPCTSTR Title, LPCTSTR Text, INT Number, INT ActType); +VOID DlgDownloadProc(); +INT_PTR CALLBACK DlgUpdate(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam); +INT_PTR CALLBACK DlgMsgPop(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam); +void __stdcall ExitMe(void*); +void __stdcall RestartMe(void*); +BOOL AllowUpdateOnStartup(); +VOID InitTimer(); \ No newline at end of file -- cgit v1.2.3