aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--xbmc/platform/win32/WIN32Util.cpp10
-rw-r--r--xbmc/platform/win32/WIN32Util.h1
2 files changed, 0 insertions, 11 deletions
diff --git a/xbmc/platform/win32/WIN32Util.cpp b/xbmc/platform/win32/WIN32Util.cpp
index 46726af482..45fb259007 100644
--- a/xbmc/platform/win32/WIN32Util.cpp
+++ b/xbmc/platform/win32/WIN32Util.cpp
@@ -370,16 +370,6 @@ std::string CWIN32Util::GetSpecialFolder(int csidl)
}
#endif
-std::string CWIN32Util::GetSystemPath()
-{
-#ifdef TARGET_WINDOWS_STORE
- // access to system folder is not allowed in a UWP app
- return "";
-#else
- return GetSpecialFolder(CSIDL_SYSTEM);
-#endif
-}
-
std::string CWIN32Util::GetProfilePath(const bool platformDirectories)
{
std::string strProfilePath;
diff --git a/xbmc/platform/win32/WIN32Util.h b/xbmc/platform/win32/WIN32Util.h
index 33033fb431..db4921b2d2 100644
--- a/xbmc/platform/win32/WIN32Util.h
+++ b/xbmc/platform/win32/WIN32Util.h
@@ -46,7 +46,6 @@ public:
static int GetDesktopColorDepth();
static size_t GetSystemMemorySize();
- static std::string GetSystemPath();
static std::string GetProfilePath(const bool platformDirectories);
static std::string UncToSmb(const std::string &strPath);
static std::string SmbToUnc(const std::string &strPath);