xwords/xwords4/android/XWords4/jni/andglobals.h
eehouse b0e88eff83 implement util_makeStreamFromAddr() and (android-only)
game_receiveMessage(), the latter combining
comms_checkIncomingStream() and server_receiveMessage() which are
always used together and require a stream be passed between which
currently can't happen across jni.
2010-01-31 21:17:21 +00:00

18 lines
305 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;
TransportProcs* xportProcs;
struct JNIState* state;
} AndGlobals;
#endif