From d7ce8c023faff3e42df641ab59cba6f18f838d13 Mon Sep 17 00:00:00 2001 From: Catalin Date: Sun, 5 Mar 2017 15:28:33 +0200 Subject: [PATCH] Remove checks for CSIDL_XXX and SHGFP_TYPE_XXX. --- src/msw/stdpaths.cpp | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/src/msw/stdpaths.cpp b/src/msw/stdpaths.cpp index 29aa6b9192..edc1517e66 100644 --- a/src/msw/stdpaths.cpp +++ b/src/msw/stdpaths.cpp @@ -51,34 +51,10 @@ typedef HRESULT (WINAPI *SHGetKnownFolderPath_t)(const GUID&, DWORD, HANDLE, PWS // used in our wxLogTrace messages #define TRACE_MASK wxT("stdpaths") -#ifndef CSIDL_APPDATA - #define CSIDL_APPDATA 0x001a -#endif - -#ifndef CSIDL_LOCAL_APPDATA - #define CSIDL_LOCAL_APPDATA 0x001c -#endif - -#ifndef CSIDL_COMMON_APPDATA - #define CSIDL_COMMON_APPDATA 0x0023 -#endif - -#ifndef CSIDL_PROGRAM_FILES - #define CSIDL_PROGRAM_FILES 0x0026 -#endif - #ifndef CSIDL_PERSONAL #define CSIDL_PERSONAL 0x0005 #endif -#ifndef SHGFP_TYPE_CURRENT - #define SHGFP_TYPE_CURRENT 0 -#endif - -#ifndef SHGFP_TYPE_DEFAULT - #define SHGFP_TYPE_DEFAULT 1 -#endif - // ---------------------------------------------------------------------------- // module globals // ----------------------------------------------------------------------------