mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
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
|
|
}
|