2011-08-29 20:36:01 -07:00
|
|
|
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */
|
2003-11-01 05:35:29 +00:00
|
|
|
/*
|
2018-07-05 07:58:50 -07:00
|
|
|
* Copyright 1997 - 2018 by Eric House (xwords@eehouse.org). All rights
|
2010-04-08 04:14:34 +00:00
|
|
|
* reserved.
|
2003-11-01 05:35:29 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _UTIL_H_
|
|
|
|
#define _UTIL_H_
|
|
|
|
|
|
|
|
#include "comtypes.h"
|
|
|
|
|
|
|
|
#include "dawg.h"
|
|
|
|
#include "model.h"
|
|
|
|
#include "board.h"
|
2005-03-09 15:14:10 +00:00
|
|
|
#include "comms.h"
|
2018-07-05 07:58:50 -07:00
|
|
|
#include "dutil.h"
|
2003-11-01 05:35:29 +00:00
|
|
|
|
2005-09-03 06:56:33 +00:00
|
|
|
#include "xwrelay.h"
|
|
|
|
|
2003-11-01 05:35:29 +00:00
|
|
|
#define LETTER_NONE '\0'
|
|
|
|
|
|
|
|
typedef enum {
|
2007-11-18 23:43:27 +00:00
|
|
|
ERR_NONE, /* 0 is special case */
|
2003-11-01 05:35:29 +00:00
|
|
|
ERR_TILES_NOT_IN_LINE, /* scoring a move where tiles aren't in line */
|
|
|
|
ERR_NO_EMPTIES_IN_TURN,
|
|
|
|
ERR_TWO_TILES_FIRST_MOVE,
|
|
|
|
ERR_TILES_MUST_CONTACT,
|
|
|
|
/* ERR_NO_HINT_MID_TURN, */
|
|
|
|
ERR_TOO_FEW_TILES_LEFT_TO_TRADE,
|
|
|
|
ERR_NOT_YOUR_TURN,
|
|
|
|
ERR_NO_PEEK_ROBOT_TILES,
|
|
|
|
#ifndef XWFEATURE_STANDALONE_ONLY
|
|
|
|
ERR_SERVER_DICT_WINS,
|
|
|
|
ERR_NO_PEEK_REMOTE_TILES,
|
2008-05-31 03:26:16 +00:00
|
|
|
ERR_REG_UNEXPECTED_USER, /* server asked to register too many remote
|
|
|
|
users */
|
2008-01-04 14:47:52 +00:00
|
|
|
ERR_REG_SERVER_SANS_REMOTE,
|
2008-01-07 01:11:29 +00:00
|
|
|
STR_NEED_BT_HOST_ADDR,
|
2003-11-01 05:35:29 +00:00
|
|
|
#endif
|
2011-03-07 06:28:43 -08:00
|
|
|
ERR_NO_EMPTY_TRADE,
|
2005-01-04 04:07:38 +00:00
|
|
|
/* ERR_CANT_ENGINE_MID_MOVE, */
|
2003-11-01 05:35:29 +00:00
|
|
|
/* ERR_NOT_YOUR_TURN_TO_TRADE, */
|
|
|
|
/* ERR_NOT_YOUR_TURN_TO_MOVE, */
|
2005-07-06 01:36:52 +00:00
|
|
|
ERR_CANT_UNDO_TILEASSIGN,
|
2008-07-24 12:37:05 +00:00
|
|
|
ERR_CANT_HINT_WHILE_DISABLED,
|
2015-07-11 16:24:21 -07:00
|
|
|
ERR_NO_HINT_FOUND, /* not really an error... */
|
2005-07-06 01:36:52 +00:00
|
|
|
|
2005-09-03 06:56:33 +00:00
|
|
|
ERR_RELAY_BASE,
|
|
|
|
ERR_RELAY_END = ERR_RELAY_BASE + XWRELAY_ERROR_LASTERR
|
2003-11-01 05:35:29 +00:00
|
|
|
} UtilErrID;
|
|
|
|
|
2004-05-14 08:57:38 +00:00
|
|
|
#define PICKER_PICKALL -1
|
|
|
|
#define PICKER_BACKUP -2
|
|
|
|
|
2003-11-16 17:11:33 +00:00
|
|
|
typedef struct PickInfo {
|
2009-04-07 04:23:56 +00:00
|
|
|
const XP_UCHAR** curTiles;
|
2003-11-30 18:54:08 +00:00
|
|
|
XP_U16 nCurTiles;
|
2004-11-02 06:27:47 +00:00
|
|
|
XP_U16 nTotal; /* count to fetch for turn, <= MAX_TRAY_TILES */
|
2003-11-16 17:11:33 +00:00
|
|
|
XP_U16 thisPick; /* <= nTotal */
|
|
|
|
} PickInfo;
|
|
|
|
|
2003-11-01 05:35:29 +00:00
|
|
|
typedef struct BadWordInfo {
|
|
|
|
XP_U16 nWords;
|
2012-12-29 07:48:31 -08:00
|
|
|
const XP_UCHAR* dictName;
|
2010-02-24 04:34:22 +00:00
|
|
|
const XP_UCHAR* words[MAX_TRAY_TILES+1]; /* can form in both directions */
|
2003-11-01 05:35:29 +00:00
|
|
|
} BadWordInfo;
|
|
|
|
|
2008-04-12 15:36:31 +00:00
|
|
|
/* XWTimerProc returns true if redraw was necessitated by what the proc did */
|
|
|
|
typedef XP_Bool (*XWTimerProc)( void* closure, XWTimerReason why );
|
2005-06-23 04:16:53 +00:00
|
|
|
|
2003-11-01 05:35:29 +00:00
|
|
|
/* Platform-specific utility functions that need to be
|
|
|
|
*/
|
|
|
|
typedef struct UtilVtable {
|
|
|
|
|
2005-01-04 04:07:38 +00:00
|
|
|
#ifndef XWFEATURE_STANDALONE_ONLY
|
2003-11-01 05:35:29 +00:00
|
|
|
XWStreamCtxt* (*m_util_makeStreamFromAddr )(XW_UtilCtxt* uc,
|
2007-12-05 06:28:51 +00:00
|
|
|
XP_PlayerAddr channelNo );
|
2005-01-04 04:07:38 +00:00
|
|
|
#endif
|
2003-11-01 05:35:29 +00:00
|
|
|
|
2011-11-16 19:01:11 -08:00
|
|
|
XWBonusType (*m_util_getSquareBonus)( XW_UtilCtxt* uc, XP_U16 boardSize,
|
2003-11-01 05:35:29 +00:00
|
|
|
XP_U16 col, XP_U16 row );
|
|
|
|
void (*m_util_userError)( XW_UtilCtxt* uc, UtilErrID id );
|
|
|
|
|
2017-02-17 08:10:09 -08:00
|
|
|
void (*m_util_notifyMove)( XW_UtilCtxt* uc, XWStreamCtxt* stream );
|
|
|
|
void (*m_util_notifyTrade)( XW_UtilCtxt* uc, const XP_UCHAR** tiles,
|
|
|
|
XP_U16 nTiles );
|
2017-02-18 19:16:32 -08:00
|
|
|
void (*m_util_notifyPickTileBlank)( XW_UtilCtxt* uc, XP_U16 playerNum,
|
|
|
|
XP_U16 col, XP_U16 row,
|
2011-10-28 22:15:56 -07:00
|
|
|
const XP_UCHAR** tileFaces,
|
|
|
|
XP_U16 nTiles );
|
2017-03-09 20:36:14 -08:00
|
|
|
void (*m_util_informNeedPickTiles)( XW_UtilCtxt* uc, XP_Bool isInitial,
|
|
|
|
XP_U16 player, XP_U16 nToPick,
|
|
|
|
XP_U16 nFaces, const XP_UCHAR** faces,
|
|
|
|
const XP_U16* counts );
|
2003-11-16 17:11:33 +00:00
|
|
|
|
2017-02-17 06:23:44 -08:00
|
|
|
void (*m_util_informNeedPassword)( XW_UtilCtxt* uc, XP_U16 playerNum,
|
|
|
|
const XP_UCHAR* name );
|
2003-11-01 05:35:29 +00:00
|
|
|
|
|
|
|
void (*m_util_trayHiddenChange)(XW_UtilCtxt* uc,
|
2006-05-19 13:44:05 +00:00
|
|
|
XW_TrayVisState newState,
|
|
|
|
XP_U16 nVisibleRows );
|
2010-04-08 04:14:14 +00:00
|
|
|
void (*m_util_yOffsetChange)(XW_UtilCtxt* uc, XP_U16 maxOffset,
|
|
|
|
XP_U16 oldOffset, XP_U16 newOffset );
|
2008-02-27 05:43:27 +00:00
|
|
|
#ifdef XWFEATURE_TURNCHANGENOTIFY
|
2012-09-27 07:04:57 -07:00
|
|
|
void (*m_util_turnChanged)(XW_UtilCtxt* uc, XP_S16 newTurn);
|
2008-02-27 05:43:27 +00:00
|
|
|
#endif
|
2016-04-14 22:16:18 -07:00
|
|
|
void (*m_util_informMove)( XW_UtilCtxt* uc, XP_S16 turn,
|
|
|
|
XWStreamCtxt* expl, XWStreamCtxt* words );
|
2012-05-14 07:01:02 -07:00
|
|
|
void (*m_util_informUndo)( XW_UtilCtxt* uc );
|
2012-10-24 07:17:21 -07:00
|
|
|
void (*m_util_informNetDict)( XW_UtilCtxt* uc, XP_LangCode lang,
|
|
|
|
const XP_UCHAR* oldName,
|
2012-09-03 21:33:46 -07:00
|
|
|
const XP_UCHAR* newName,
|
2012-09-08 20:23:48 -07:00
|
|
|
const XP_UCHAR* newSum,
|
2012-09-03 21:33:46 -07:00
|
|
|
XWPhoniesChoice phoniesAction );
|
|
|
|
|
2012-10-09 05:31:12 -07:00
|
|
|
void (*m_util_notifyGameOver)( XW_UtilCtxt* uc, XP_S16 quitter );
|
2012-10-05 18:51:32 -07:00
|
|
|
#ifdef XWFEATURE_HILITECELL
|
2003-11-01 05:35:29 +00:00
|
|
|
XP_Bool (*m_util_hiliteCell)( XW_UtilCtxt* uc, XP_U16 col, XP_U16 row );
|
2012-10-05 18:51:32 -07:00
|
|
|
#endif
|
2003-11-01 05:35:29 +00:00
|
|
|
|
|
|
|
XP_Bool (*m_util_engineProgressCallback)( XW_UtilCtxt* uc );
|
|
|
|
|
2005-06-23 04:16:53 +00:00
|
|
|
void (*m_util_setTimer)( XW_UtilCtxt* uc, XWTimerReason why, XP_U16 when,
|
2007-05-26 14:14:01 +00:00
|
|
|
XWTimerProc proc, void* closure );
|
2009-09-21 12:49:08 +00:00
|
|
|
void (*m_util_clearTimer)( XW_UtilCtxt* uc, XWTimerReason why );
|
2003-11-01 05:35:29 +00:00
|
|
|
|
|
|
|
void (*m_util_requestTime)( XW_UtilCtxt* uc );
|
|
|
|
|
2008-04-08 03:55:53 +00:00
|
|
|
XP_Bool (*m_util_altKeyDown)( XW_UtilCtxt* uc );
|
2003-11-01 05:35:29 +00:00
|
|
|
DictionaryCtxt* (*m_util_makeEmptyDict)( XW_UtilCtxt* uc );
|
|
|
|
|
2017-02-20 07:20:19 -08:00
|
|
|
void (*m_util_notifyIllegalWords)( XW_UtilCtxt* uc, BadWordInfo* bwi,
|
2003-11-01 05:35:29 +00:00
|
|
|
XP_U16 turn, XP_Bool turnLost );
|
2008-10-24 08:56:20 +00:00
|
|
|
|
|
|
|
void (*m_util_remSelected)(XW_UtilCtxt* uc);
|
|
|
|
|
2011-08-29 20:36:01 -07:00
|
|
|
#ifndef XWFEATURE_MINIWIN
|
|
|
|
void (*m_util_bonusSquareHeld)( XW_UtilCtxt* uc, XWBonusType bonus );
|
2011-09-02 18:36:03 -07:00
|
|
|
void (*m_util_playerScoreHeld)( XW_UtilCtxt* uc, XP_U16 player );
|
2011-08-29 20:36:01 -07:00
|
|
|
#endif
|
2011-10-13 19:14:08 -07:00
|
|
|
#ifdef XWFEATURE_BOARDWORDS
|
|
|
|
void (*m_util_cellSquareHeld)( XW_UtilCtxt* uc, XWStreamCtxt* words );
|
|
|
|
#endif
|
2011-08-29 20:36:01 -07:00
|
|
|
|
2009-01-03 23:54:25 +00:00
|
|
|
#ifndef XWFEATURE_STANDALONE_ONLY
|
2012-02-09 05:19:03 -08:00
|
|
|
void (*m_util_informMissing)(XW_UtilCtxt* uc, XP_Bool isServer,
|
2015-01-03 09:50:07 -08:00
|
|
|
const CommsAddrRec* addr, XP_U16 nDevs,
|
|
|
|
XP_U16 nMissing );
|
2005-04-03 16:57:01 +00:00
|
|
|
void (*m_util_addrChange)( XW_UtilCtxt* uc, const CommsAddrRec* oldAddr,
|
2006-09-08 07:14:24 +00:00
|
|
|
const CommsAddrRec* newAddr );
|
2010-09-10 01:30:40 -07:00
|
|
|
void (*m_util_setIsServer)(XW_UtilCtxt* uc, XP_Bool isServer );
|
2003-11-01 05:35:29 +00:00
|
|
|
#endif
|
|
|
|
|
2004-06-25 06:39:24 +00:00
|
|
|
#ifdef XWFEATURE_SEARCHLIMIT
|
|
|
|
XP_Bool (*m_util_getTraySearchLimits)(XW_UtilCtxt* uc,
|
|
|
|
XP_U16* min, XP_U16* max );
|
|
|
|
#endif
|
|
|
|
|
2010-10-03 18:11:51 -07:00
|
|
|
#ifdef XWFEATURE_CHAT
|
2015-08-12 07:38:18 -07:00
|
|
|
void (*m_util_showChat)( XW_UtilCtxt* uc, const XP_UCHAR* const msg,
|
2017-06-08 13:04:59 -07:00
|
|
|
XP_S16 from, XP_U32 timestamp );
|
2010-10-03 18:11:51 -07:00
|
|
|
#endif
|
|
|
|
|
2003-11-01 05:35:29 +00:00
|
|
|
#ifdef SHOW_PROGRESS
|
2004-10-07 13:51:03 +00:00
|
|
|
void (*m_util_engineStarting)( XW_UtilCtxt* uc, XP_U16 nBlanks );
|
2003-11-01 05:35:29 +00:00
|
|
|
void (*m_util_engineStopping)( XW_UtilCtxt* uc );
|
|
|
|
#endif
|
2006-11-07 05:46:44 +00:00
|
|
|
|
2018-07-05 07:58:50 -07:00
|
|
|
XW_DUtilCtxt* (*m_util_getDevUtilCtxt)( XW_UtilCtxt* uc );
|
2013-07-10 08:05:47 -07:00
|
|
|
|
2003-11-01 05:35:29 +00:00
|
|
|
} UtilVtable;
|
|
|
|
|
|
|
|
|
|
|
|
struct XW_UtilCtxt {
|
|
|
|
UtilVtable* vtable;
|
|
|
|
|
|
|
|
struct CurGameInfo* gameInfo;
|
|
|
|
|
|
|
|
void* closure;
|
|
|
|
MPSLOT
|
|
|
|
};
|
|
|
|
|
|
|
|
#define util_makeStreamFromAddr(uc,a) \
|
|
|
|
(uc)->vtable->m_util_makeStreamFromAddr((uc),(a))
|
|
|
|
|
2011-11-16 19:01:11 -08:00
|
|
|
#define util_getSquareBonus(uc,b,c,r) \
|
|
|
|
(uc)->vtable->m_util_getSquareBonus((uc),(b),(c),(r))
|
2003-11-01 05:35:29 +00:00
|
|
|
|
|
|
|
#define util_userError(uc,err) \
|
|
|
|
(uc)->vtable->m_util_userError((uc),(err))
|
|
|
|
|
2017-02-17 08:10:09 -08:00
|
|
|
#define util_notifyMove(uc, str) \
|
|
|
|
(uc)->vtable->m_util_notifyMove((uc), (str))
|
2003-11-01 05:35:29 +00:00
|
|
|
|
2017-02-17 08:10:09 -08:00
|
|
|
#define util_notifyTrade(uc, tx, nt) \
|
|
|
|
(uc)->vtable->m_util_notifyTrade((uc), (tx), (nt))
|
2011-10-19 18:34:26 -07:00
|
|
|
|
2017-02-18 19:16:32 -08:00
|
|
|
#define util_notifyPickTileBlank( uc, c, r, n, tx, nt ) \
|
2017-03-09 20:36:14 -08:00
|
|
|
(uc)->vtable->m_util_notifyPickTileBlank( (uc), (c), (r), (n), (tx), (nt) )
|
|
|
|
|
|
|
|
#define util_informNeedPickTiles( uc, ii, pl, np, nt, fc, cn ) \
|
|
|
|
(uc)->vtable->m_util_informNeedPickTiles( (uc), (ii), (pl), (np), (nt), (fc), (cn) )
|
|
|
|
|
2017-02-17 06:23:44 -08:00
|
|
|
#define util_informNeedPassword( uc, pn, n ) \
|
|
|
|
(uc)->vtable->m_util_informNeedPassword( (uc), (pn), (n) )
|
2003-11-01 05:35:29 +00:00
|
|
|
|
2006-05-19 13:44:05 +00:00
|
|
|
#define util_trayHiddenChange( uc, b, n ) \
|
|
|
|
(uc)->vtable->m_util_trayHiddenChange((uc), (b), (n))
|
2003-11-01 05:35:29 +00:00
|
|
|
|
2010-04-08 04:14:14 +00:00
|
|
|
#define util_yOffsetChange( uc, m, o, n ) \
|
|
|
|
(uc)->vtable->m_util_yOffsetChange((uc), (m), (o), (n) )
|
2003-11-01 05:35:29 +00:00
|
|
|
|
2008-02-27 05:43:27 +00:00
|
|
|
#ifdef XWFEATURE_TURNCHANGENOTIFY
|
2012-09-27 07:04:57 -07:00
|
|
|
# define util_turnChanged( uc, t ) \
|
|
|
|
(uc)->vtable->m_util_turnChanged( (uc), (t) )
|
2008-02-27 05:43:27 +00:00
|
|
|
#else
|
2012-09-27 07:04:57 -07:00
|
|
|
# define util_turnChanged( uc, t )
|
2008-02-27 05:43:27 +00:00
|
|
|
#endif
|
2008-02-26 13:46:33 +00:00
|
|
|
|
2016-04-14 22:16:18 -07:00
|
|
|
#define util_informMove(uc,t,e,w) \
|
|
|
|
(uc)->vtable->m_util_informMove( (uc), (t), (e), (w))
|
2012-05-14 07:01:02 -07:00
|
|
|
#define util_informUndo(uc) \
|
|
|
|
(uc)->vtable->m_util_informUndo( (uc))
|
2012-10-24 07:17:21 -07:00
|
|
|
#define util_informNetDict(uc, cd, on, nn, ns, pa ) \
|
|
|
|
(uc)->vtable->m_util_informNetDict( (uc), (cd), (on), (nn), (ns), \
|
|
|
|
(pa) )
|
2012-10-09 05:31:12 -07:00
|
|
|
#define util_notifyGameOver( uc, q ) \
|
|
|
|
(uc)->vtable->m_util_notifyGameOver((uc), (q))
|
2003-11-01 05:35:29 +00:00
|
|
|
|
2012-10-05 18:51:32 -07:00
|
|
|
#ifdef XWFEATURE_HILITECELL
|
|
|
|
# define util_hiliteCell( uc, c, r ) \
|
2003-11-01 05:35:29 +00:00
|
|
|
(uc)->vtable->m_util_hiliteCell((uc), (c), (r))
|
2012-10-05 18:51:32 -07:00
|
|
|
#endif
|
2003-11-01 05:35:29 +00:00
|
|
|
|
|
|
|
#define util_engineProgressCallback( uc ) \
|
|
|
|
(uc)->vtable->m_util_engineProgressCallback((uc))
|
|
|
|
|
2005-06-23 04:16:53 +00:00
|
|
|
#define util_setTimer( uc, why, when, proc, clos ) \
|
|
|
|
(uc)->vtable->m_util_setTimer((uc),(why),(when),(proc),(clos))
|
2009-09-21 12:49:08 +00:00
|
|
|
#define util_clearTimer( uc, why ) \
|
|
|
|
(uc)->vtable->m_util_clearTimer((uc),(why))
|
2003-11-01 05:35:29 +00:00
|
|
|
|
|
|
|
#define util_requestTime( uc ) \
|
|
|
|
(uc)->vtable->m_util_requestTime((uc))
|
|
|
|
|
2008-04-08 03:55:53 +00:00
|
|
|
#define util_altKeyDown( uc ) \
|
|
|
|
(uc)->vtable->m_util_altKeyDown((uc))
|
|
|
|
|
2003-11-01 05:35:29 +00:00
|
|
|
#define util_makeEmptyDict( uc ) \
|
|
|
|
(uc)->vtable->m_util_makeEmptyDict((uc))
|
|
|
|
|
2017-02-20 07:20:19 -08:00
|
|
|
#define util_notifyIllegalWords( uc, w, p, b ) \
|
|
|
|
(uc)->vtable->m_util_notifyIllegalWords((uc),(w),(p),(b))
|
2003-11-01 05:35:29 +00:00
|
|
|
|
2008-10-24 08:56:20 +00:00
|
|
|
#define util_remSelected( uc ) \
|
|
|
|
(uc)->vtable->m_util_remSelected((uc))
|
|
|
|
|
2011-08-29 20:36:01 -07:00
|
|
|
#ifndef XWFEATURE_MINIWIN
|
|
|
|
# define util_bonusSquareHeld( uc, b ) \
|
|
|
|
(uc)->vtable->m_util_bonusSquareHeld( (uc), (b) )
|
2011-09-02 18:36:03 -07:00
|
|
|
# define util_playerScoreHeld( uc, player ) \
|
|
|
|
(uc)->vtable->m_util_playerScoreHeld( (uc), (player) )
|
2011-08-29 20:36:01 -07:00
|
|
|
#endif
|
2011-10-13 19:14:08 -07:00
|
|
|
#ifdef XWFEATURE_BOARDWORDS
|
|
|
|
#define util_cellSquareHeld(uc, s) \
|
|
|
|
(uc)->vtable->m_util_cellSquareHeld( (uc), (s) )
|
|
|
|
#endif
|
2012-03-19 07:36:18 -07:00
|
|
|
|
2009-01-03 23:54:25 +00:00
|
|
|
#ifndef XWFEATURE_STANDALONE_ONLY
|
2015-01-03 09:50:07 -08:00
|
|
|
# define util_informMissing( uc, is, ct, nd, nm ) \
|
|
|
|
(uc)->vtable->m_util_informMissing((uc), (is), (ct), (nd), (nm) )
|
2009-01-03 23:54:25 +00:00
|
|
|
# define util_addrChange( uc, addro, addrn ) \
|
2006-09-08 07:14:24 +00:00
|
|
|
(uc)->vtable->m_util_addrChange((uc), (addro), (addrn))
|
2010-09-10 01:30:40 -07:00
|
|
|
# define util_setIsServer( uc, is ) \
|
|
|
|
(uc)->vtable->m_util_setIsServer((uc), (is))
|
2009-01-05 02:07:30 +00:00
|
|
|
# else
|
|
|
|
# define util_addrChange( uc, addro, addrn )
|
2003-11-01 05:35:29 +00:00
|
|
|
#endif
|
|
|
|
|
2004-06-25 06:39:24 +00:00
|
|
|
#ifdef XWFEATURE_SEARCHLIMIT
|
|
|
|
#define util_getTraySearchLimits(uc,min,max) \
|
|
|
|
(uc)->vtable->m_util_getTraySearchLimits((uc), (min), (max))
|
|
|
|
#endif
|
|
|
|
|
2010-10-03 18:11:51 -07:00
|
|
|
#ifdef XWFEATURE_CHAT
|
2017-06-08 13:04:59 -07:00
|
|
|
# define util_showChat( uc, m, f, ts ) (uc)->vtable->m_util_showChat((uc),(m),(f), (ts))
|
2010-10-03 18:11:51 -07:00
|
|
|
#endif
|
2004-06-25 06:39:24 +00:00
|
|
|
|
2003-11-01 05:35:29 +00:00
|
|
|
# ifdef SHOW_PROGRESS
|
2004-10-07 13:51:03 +00:00
|
|
|
# define util_engineStarting( uc, nb ) \
|
|
|
|
(uc)->vtable->m_util_engineStarting((uc),(nb))
|
2003-11-01 05:35:29 +00:00
|
|
|
# define util_engineStopping( uc ) \
|
|
|
|
(uc)->vtable->m_util_engineStopping((uc))
|
|
|
|
# else
|
2004-10-30 16:59:07 +00:00
|
|
|
# define util_engineStarting( uc, nb )
|
2003-11-01 05:35:29 +00:00
|
|
|
# define util_engineStopping( uc )
|
|
|
|
# endif
|
|
|
|
|
2018-07-05 07:58:50 -07:00
|
|
|
# define util_getDevUtilCtxt(uc) \
|
|
|
|
(uc)->vtable->m_util_getDevUtilCtxt( (uc) )
|
2013-07-10 08:05:47 -07:00
|
|
|
|
2003-11-01 05:35:29 +00:00
|
|
|
#endif
|