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