From cd0c48001ca3ac0e1f142508fb0f5831a23531be Mon Sep 17 00:00:00 2001 From: =?utf8?q?W=C5=82odzimierz=20Skiba?= Date: Wed, 20 Oct 2004 09:18:02 +0000 Subject: [PATCH] DMC, OW and my copy of MinGW misses SH* values, Borland seems fine. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30032 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/stdpaths.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/msw/stdpaths.cpp b/src/msw/stdpaths.cpp index dcb164a576..d306af2131 100644 --- a/src/msw/stdpaths.cpp +++ b/src/msw/stdpaths.cpp @@ -62,6 +62,14 @@ static const wxChar *TRACE_MASK = _T("stdpaths"); #define CSIDL_PROGRAM_FILES 0x0026 #endif +#ifndef SHGFP_TYPE_CURRENT + #define SHGFP_TYPE_CURRENT 0 +#endif + +#ifndef SHGFP_TYPE_DEFAULT + #define SHGFP_TYPE_DEFAULT 1 +#endif + // ---------------------------------------------------------------------------- // module globals // ---------------------------------------------------------------------------- -- 2.45.2