diff --git a/MT5Connector/MT5Connector.vcxproj b/MT5Connector/MT5Connector.vcxproj index 8266eaec..2c92b107 100755 --- a/MT5Connector/MT5Connector.vcxproj +++ b/MT5Connector/MT5Connector.vcxproj @@ -1,5 +1,5 @@  - + Debug @@ -19,8 +19,9 @@ + 17.0 + Win32Proj {CB6D4A3E-2F2E-4C67-929D-3C2A8FD1C556} - ManagedCProj MT5Connector 10.0 @@ -28,9 +29,8 @@ DynamicLibrary true - true - MultiByte - v141 + Unicode + v143 DynamicLibrary @@ -41,16 +41,15 @@ DynamicLibrary false - true Unicode - v141 + v143 DynamicLibrary false true Unicode - v141 + v143 @@ -70,7 +69,7 @@ true - $(SolutionDir)build\products\$(Configuration)\ + $(SolutionDir)build\products\$(Configuration)\x86\ true @@ -79,11 +78,12 @@ false - $(SolutionDir)\build\products\$(Configuration)\ + $(SolutionDir)\build\products\$(Configuration)\x86\ false $(SolutionDir)\build\products\$(Configuration)\$(Platform)\ + $(SolutionDir)thirdparty\libs;$(LibraryPath) @@ -125,16 +125,13 @@ Level3 WIN32;NDEBUG;%(PreprocessorDefinitions) Use + $(SolutionDir)MtService;%(AdditionalIncludeDirectories) true user32.lib;%(AdditionalDependencies) - - - - @@ -160,14 +157,6 @@ - - {de76d5c7-b99c-4467-8408-78173bdd84e0} - false - true - false - true - false - {3effff03-2a1d-48aa-a49a-9f90889f31e0} diff --git a/MT5Connector/MT5Handler.h b/MT5Connector/MT5Handler.h index 154013b5..ffcd8514 100755 --- a/MT5Connector/MT5Handler.h +++ b/MT5Connector/MT5Handler.h @@ -11,7 +11,7 @@ public: MT5Handler(int handle) : handle_(handle) { - msgId = WM_TIMER; + msg_id_ = WM_TIMER; } ~MT5Handler() override = default; @@ -19,9 +19,9 @@ public: private: void SendTickToMetaTrader() override { - PostMessage((HWND)handle_, msgId, 0, 0); + PostMessage((HWND)handle_, msg_id_, 0, 0); } int handle_; - unsigned int msgId; + unsigned int msg_id_; }; \ No newline at end of file