// stdafx.h : include file for standard system include files, // or project specific include files that are used frequently, but // are changed infrequently // #pragma once #define _HAS_EXCEPTIONS 1 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include typedef std::wstring tstring; typedef std::wostringstream tostringstream; typedef std::wistringstream tistringstream; typedef std::wofstream tofstream; typedef std::wifstream tifstream; typedef std::wostream tostream; typedef std::wistream tistream; typedef boost::posix_time::wtime_input_facet ttime_input_facet; typedef boost::posix_time::wtime_facet ttime_facet; inline std::string currencyrates_t2a(const wchar_t* t) { std::string s; char* p = mir_u2a(t); if (p) { s = p; mir_free(p); } return s; } inline tstring currencyrates_a2t(const char* s) { tstring t; wchar_t* p = mir_a2u(s); if (p) { t = p; mir_free(p); } return t; } #include "resource.h" #include "version.h" #include "IconLib.h" #include "CurrencyRateInfoDlg.h" #include "ModuleInfo.h" #include "DBUtils.h" #include "HTTPSession.h" #include "CurrencyConverter.h" #include "WinCtrlHelper.h" #include "ImportExport.h" #include "ComHelper.h" #include "Log.h" #include "CommonOptionDlg.h" #include "EconomicRateInfo.h" #include "SettingsDlg.h" #include "CreateFilePath.h" #include "Locale.h" #include "ExtraImages.h" #include "IsWithinAccuracy.h" #include "ICurrencyRatesProvider.h" #include "CurrencyRatesProviders.h" #include "CurrencyRatesProviderBase.h" #include "CurrencyRatesProviderVisitor.h" #include "CurrencyRatesProviderVisitorDbSettings.h" #include "CurrencyRatesProviderVisitorFormater.h" #include "CurrencyRatesProviderVisitorTendency.h" #include "CurrencyRatesProviderVisitorFormatSpecificator.h" #define CHART_IMPLEMENT #ifdef CHART_IMPLEMENT #include "CurrencyRateChart.h" #include "Chart.h" #endif #include "IHTMLParser.h" #include "IHTMLEngine.h" #include "HTMLParserMS.h" #include "IXMLEngine.h" #include "XMLEngineMI.h" struct CMPlugin : public PLUGIN { CMPlugin(); int Load() override; int Unload() override; };