diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-11-21 11:26:23 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-11-21 11:26:23 +0000 |
commit | 52245921c5eb8d6e77d2f18ac692e33622af3915 (patch) | |
tree | b215a9aead7c63dd20dbbd16eca9e50650b91208 /protocols/MRA | |
parent | 1a1264bf4fb2ebd9dbf445662b9e8a4e38081e05 (diff) |
consistent hash generation fix - part 4
git-svn-id: http://svn.miranda-ng.org/main/trunk@2412 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MRA')
-rw-r--r-- | protocols/MRA/Mra.vcxproj | 3 | ||||
-rw-r--r-- | protocols/MRA/Mra.vcxproj.filters | 3 | ||||
-rw-r--r-- | protocols/MRA/src/stdafx.cpp | 18 |
3 files changed, 23 insertions, 1 deletions
diff --git a/protocols/MRA/Mra.vcxproj b/protocols/MRA/Mra.vcxproj index 52e49b129f..165b5bb5a2 100644 --- a/protocols/MRA/Mra.vcxproj +++ b/protocols/MRA/Mra.vcxproj @@ -184,7 +184,7 @@ </ResourceCompile>
</ItemDefinitionGroup>
<ItemGroup>
- <ClCompile Include="src\Mra.cpp">
+ <ClCompile Include="src\stdafx.cpp">
<PrecompiledHeader>Create</PrecompiledHeader>
</ClCompile>
<ClCompile Include="src\MraProto.cpp" />
@@ -206,6 +206,7 @@ <ClCompile Include="src\MraSelectEMail.cpp" />
<ClCompile Include="src\MraSendCommand.cpp" />
<ClCompile Include="src\MraSendQueue.cpp" />
+ <ClCompile Include="src\Mra.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\Mra.h" />
diff --git a/protocols/MRA/Mra.vcxproj.filters b/protocols/MRA/Mra.vcxproj.filters index c4251eca48..f53bbf5b56 100644 --- a/protocols/MRA/Mra.vcxproj.filters +++ b/protocols/MRA/Mra.vcxproj.filters @@ -75,6 +75,9 @@ <ClCompile Include="src\MraProto.cpp">
<Filter>Source Files</Filter>
</ClCompile>
+ <ClCompile Include="src\stdafx.cpp">
+ <Filter>Source Files</Filter>
+ </ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="src\Mra.h">
diff --git a/protocols/MRA/src/stdafx.cpp b/protocols/MRA/src/stdafx.cpp new file mode 100644 index 0000000000..b9e22e9c92 --- /dev/null +++ b/protocols/MRA/src/stdafx.cpp @@ -0,0 +1,18 @@ +/*
+Copyright (C) 2012 Miranda NG team (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 <http://www.gnu.org/licenses/>.
+*/
+
+#include "Mra.h"
\ No newline at end of file |