aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/compat.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-10-02 12:40:26 -0700
committerChris Robinson <[email protected]>2018-10-02 12:40:26 -0700
commitc39eeb963895a2eb05e17bc28c357f7d3f4ce815 (patch)
tree1cb89bf63c60f4d81248d19f34157bc82dd200f0 /Alc/compat.h
parent493c8bbc833a4b5f58c82913af913946926b194f (diff)
Don't try to get the JNIEnv on Android
It's currently not used. More stuff is needed anyway which may need a different approach.
Diffstat (limited to 'Alc/compat.h')
-rw-r--r--Alc/compat.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/Alc/compat.h b/Alc/compat.h
index 093184c8..495bfdf2 100644
--- a/Alc/compat.h
+++ b/Alc/compat.h
@@ -50,14 +50,6 @@ void CloseLib(void *handle);
void *GetSymbol(void *handle, const char *name);
#endif
-#ifdef __ANDROID__
-#define JCALL(obj, func) ((*(obj))->func((obj), EXTRACT_VCALL_ARGS
-#define JCALL0(obj, func) ((*(obj))->func((obj) EXTRACT_VCALL_ARGS
-
-/** Returns a JNIEnv*. */
-void *Android_GetJNIEnv(void);
-#endif
-
#ifdef __cplusplus
} /* extern "C" */
#endif