From 61c2afedf4bc144350a22cb12a7ba38d8ec5943e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?W=C5=82odzimierz=20Skiba?= Date: Thu, 20 Jan 2005 17:08:36 +0000 Subject: [PATCH] Missing define. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31520 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/stdpaths.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/msw/stdpaths.cpp b/src/msw/stdpaths.cpp index 27fa594c7e..d0271fe1e7 100644 --- a/src/msw/stdpaths.cpp +++ b/src/msw/stdpaths.cpp @@ -50,6 +50,10 @@ typedef HRESULT (WINAPI *SHGetSpecialFolderPath_t)(HWND, LPTSTR, int, BOOL); // used in our wxLogTrace messages static const wxChar *TRACE_MASK = _T("stdpaths"); +#ifndef CSIDL_APPDATA + #define CSIDL_APPDATA 0x001a +#endif + #ifndef CSIDL_LOCAL_APPDATA #define CSIDL_LOCAL_APPDATA 0x001c #endif