diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-09-06 12:49:06 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-09-06 12:49:06 +0000 |
commit | 663d4c64740f76a6fdfaab6e2aa0854bd8d273a5 (patch) | |
tree | 1b36b0ba64683e5e84e67784f3f088b00de79eed /sal/systools/win32 | |
parent | 30b2a56734f07b493512d0653709d9e118b8c9c6 (diff) |
INTEGRATION: CWS mingwport06 (1.5.144); FILE MERGED
2007/08/24 13:06:53 vg 1.5.144.1: #i75499# pragma is for MSVC
Diffstat (limited to 'sal/systools/win32')
-rw-r--r-- | sal/systools/win32/kill/kill.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sal/systools/win32/kill/kill.cxx b/sal/systools/win32/kill/kill.cxx index 5e33e1bc5517..6c04a88c8ccf 100644 --- a/sal/systools/win32/kill/kill.cxx +++ b/sal/systools/win32/kill/kill.cxx @@ -4,9 +4,9 @@ * * $RCSfile: kill.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: obo $ $Date: 2006-09-17 09:07:03 $ + * last change: $Author: kz $ $Date: 2007-09-06 13:49:06 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -38,12 +38,16 @@ #include <tchar.h> +#ifdef _MSC_VER #pragma warning(push,1) // disable warnings within system headers +#endif #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <tlhelp32.h> #include <psapi.h> +#ifdef _MSC_VER #pragma warning(pop) +#endif #include <signal.h> #include <stdarg.h> |