[Windows] Remove redundant DirectSound error codes
[xbmc.git] / xbmc / platform / android / activity / JNIXBMCURIUtils.h
blob4f6237708f94e7107ee08f72b518cd3677e3c178
1 /*
2 * Copyright (C) 2020 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 #include <androidjni/JNIBase.h>
13 namespace jni
16 class CJNIXBMCURIUtils : public CJNIBase
18 public:
19 CJNIXBMCURIUtils(const jni::jhobject &object) : CJNIBase(object) {}
21 static void RegisterNatives(JNIEnv* env);
24 protected:
25 ~CJNIXBMCURIUtils() override = default;
27 static jstring _substitutePath(JNIEnv* env, jobject thiz, jstring path);