xwords/xwords4/android/XWords4/jni/andglobals.h
eehouse bd611bb6f4 implement dictChanged. And so that utf8 dicts could be opened without
their games being drawn (no BoardActivity around) break the two
android-only callbacks out of UtilCtxt and into a new JNIUtils
interface that then requires new handing in C.
2010-02-11 13:27:09 +00:00

19 lines
338 B
C

#ifndef _ANDGLOBALS_H_
#define _ANDGLOBALS_H_
#include "vtabmgr.h"
#include "dictnry.h"
#include "game.h"
typedef struct _AndGlobals {
VTableMgr* vtMgr;
CurGameInfo* gi;
DrawCtx* dctx;
XW_UtilCtxt* util;
struct JNIUtilCtxt* jniutil;
TransportProcs* xportProcs;
struct JNIState* state;
} AndGlobals;
#endif