diff options
author | George Hazan <ghazan@miranda.im> | 2018-12-18 15:40:58 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-12-18 15:40:58 +0300 |
commit | 0e854af70f6f330e63aa36fde125fbb0ca4ff8ef (patch) | |
tree | d681b5e06a8c572c13d82d0b49b54860fb896843 /plugins/Msg_Export | |
parent | d60f86e09f10ab4d55b94c6193b3bb3d3ca46b18 (diff) |
C++ exceptions are disabled in all cases where they just prevent warnings
Diffstat (limited to 'plugins/Msg_Export')
-rw-r--r-- | plugins/Msg_Export/msg_export.vcxproj | 5 | ||||
-rwxr-xr-x | plugins/Msg_Export/src/stdafx.h | 3 |
2 files changed, 3 insertions, 5 deletions
diff --git a/plugins/Msg_Export/msg_export.vcxproj b/plugins/Msg_Export/msg_export.vcxproj index 7aa6599dc4..7e73a71330 100644 --- a/plugins/Msg_Export/msg_export.vcxproj +++ b/plugins/Msg_Export/msg_export.vcxproj @@ -25,9 +25,4 @@ <ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\build\vc.common\plugin.props" />
</ImportGroup>
- <ItemDefinitionGroup>
- <ClCompile>
- <ExceptionHandling>Sync</ExceptionHandling>
- </ClCompile>
- </ItemDefinitionGroup>
</Project>
\ No newline at end of file diff --git a/plugins/Msg_Export/src/stdafx.h b/plugins/Msg_Export/src/stdafx.h index aae56f15b3..5c870fd621 100755 --- a/plugins/Msg_Export/src/stdafx.h +++ b/plugins/Msg_Export/src/stdafx.h @@ -22,6 +22,9 @@ #include <Windows.h>
#include <windowsx.h>
#include <Richedit.h>
+
+#include <malloc.h>
+
using namespace std;
#include <Shlobj.h>
#include <list>
|