android: Context: add GetAudioManager

This commit is contained in:
Thomas Guillem
2020-03-23 21:34:18 +01:00
committed by Max Kellermann
parent 200258c7c3
commit 5619fd0bba
2 changed files with 25 additions and 0 deletions

View File

@@ -23,6 +23,7 @@
#include "java/Object.hxx"
class AllocatedPath;
class AudioManager;
class Context : public Java::GlobalObject {
public:
@@ -31,6 +32,9 @@ public:
gcc_pure
AllocatedPath GetCacheDir(JNIEnv *env) const noexcept;
gcc_pure
AudioManager *GetAudioManager(JNIEnv *env) noexcept;
};
#endif