app: add Handle type and PlatformHandle()

On Android, allow access to JVM and Application context.

Signed-off-by: Greg Pomerantz <gmp.gio@wow.st>
This commit is contained in:
Greg Pomerantz
2019-10-18 12:22:55 -04:00
committed by Elias Naur
parent 175144fa99
commit 5ef176af81
6 changed files with 35 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
package window
var PlatformHandle *Handle
type Handle struct {
// JVM is the JNI *JVM pointer.
JVM uintptr
// Context is a global reference to the application's
// android.content.Context instance.
Context uintptr
}