diff options
author | Ivo Hinkelmann <ihi@openoffice.org> | 2008-01-15 12:21:12 +0000 |
---|---|---|
committer | Ivo Hinkelmann <ihi@openoffice.org> | 2008-01-15 12:21:12 +0000 |
commit | feaa7320f734b6763e694dbb3b1123ee86cd7d34 (patch) | |
tree | b46231100b3f04fd2c1a8161edf6f2e72c98f577 /crashrep | |
parent | da30f5bcedfba716701e40e800ca7d614ec09d97 (diff) |
INTEGRATION: CWS obo21 (1.3.20); FILE MERGED
2007/12/07 07:21:57 obo 1.3.20.2: typo
2007/12/06 11:40:01 obo 1.3.20.1: #i84233# change for .Net 2008 (no directx 5 available)
Diffstat (limited to 'crashrep')
-rwxr-xr-x | crashrep/source/win32/rcheader.txt | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/crashrep/source/win32/rcheader.txt b/crashrep/source/win32/rcheader.txt index bb0ef9029b91..094316214d1f 100755 --- a/crashrep/source/win32/rcheader.txt +++ b/crashrep/source/win32/rcheader.txt @@ -4,9 +4,9 @@ * * $RCSfile: rcheader.txt,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: obo $ $Date: 2007-07-18 14:59:59 $ + * last change: $Author: ihi $ $Date: 2008-01-15 13:21:12 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -52,7 +52,16 @@ // Header #include "resource.h" +#if defined(_MSC_VER) && (_MSC_VER < 1500) #include "winres.h" +#else +#define WINVER 0x0500 +#include <winresrc.h> +#define LB_ADDSTRING (WM_USER+1) +#define CB_ADDSTRING (WM_USER+3) +#define IDC_STATIC (-1) +#endif + #include "verinfo.hrc" #define VER_FIRSTYEAR 03 |