mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-07 05:24:46 +01:00
bd611bb6f4
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.
19 lines
338 B
C
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
|