forked from joejulian/gio
5ef176af81
On Android, allow access to JVM and Application context. Signed-off-by: Greg Pomerantz <gmp.gio@wow.st>
12 lines
223 B
Go
12 lines
223 B
Go
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
|
|
}
|