mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
fix assertion by adding missing methods
They're stubbed out; hope they're unused. :-)
This commit is contained in:
parent
a8f0ca33cd
commit
0e1f10b802
2 changed files with 24 additions and 0 deletions
|
@ -1020,6 +1020,17 @@ curses_util_remSelected( XW_UtilCtxt* uc, XWEnv XP_UNUSED(xwe) )
|
|||
free( text );
|
||||
}
|
||||
|
||||
static void
|
||||
curses_util_getMQTTIDsFor( XW_UtilCtxt* uc, XWEnv xwe, XP_U16 nRelayIDs,
|
||||
const XP_UCHAR* relayIDs[] )
|
||||
{
|
||||
XP_ASSERT(0); /* implement me */
|
||||
XP_USE( uc );
|
||||
XP_USE( xwe );
|
||||
XP_USE( nRelayIDs );
|
||||
XP_USE( relayIDs );
|
||||
}
|
||||
|
||||
static void
|
||||
curses_util_timerSelected( XW_UtilCtxt* XP_UNUSED(uc), XWEnv XP_UNUSED(xwe),
|
||||
XP_Bool XP_UNUSED_DBG(inDuplicateMode),
|
||||
|
@ -1134,6 +1145,7 @@ setupCursesUtilCallbacks( CursesBoardGlobals* bGlobals, XW_UtilCtxt* util )
|
|||
SET_PROC(altKeyDown); /* ?? */
|
||||
SET_PROC(notifyIllegalWords);
|
||||
SET_PROC(remSelected);
|
||||
SET_PROC(getMQTTIDsFor);
|
||||
SET_PROC(timerSelected);
|
||||
#ifndef XWFEATURE_MINIWIN
|
||||
SET_PROC(bonusSquareHeld);
|
||||
|
|
|
@ -1996,6 +1996,17 @@ gtk_util_timerSelected( XW_UtilCtxt* uc, XWEnv XP_UNUSED(xwe), XP_Bool inDuplica
|
|||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_util_getMQTTIDsFor( XW_UtilCtxt* uc, XWEnv xwe, XP_U16 nRelayIDs,
|
||||
const XP_UCHAR* relayIDs[] )
|
||||
{
|
||||
XP_ASSERT(0); /* implement me */
|
||||
XP_USE( uc );
|
||||
XP_USE( xwe );
|
||||
XP_USE( nRelayIDs );
|
||||
XP_USE( relayIDs );
|
||||
}
|
||||
|
||||
#ifndef XWFEATURE_STANDALONE_ONLY
|
||||
static XWStreamCtxt*
|
||||
gtk_util_makeStreamFromAddr(XW_UtilCtxt* uc, XWEnv XP_UNUSED(xwe), XP_PlayerAddr channelNo )
|
||||
|
@ -2313,6 +2324,7 @@ setupGtkUtilCallbacks( GtkGameGlobals* globals, XW_UtilCtxt* util )
|
|||
SET_PROC(engineProgressCallback);
|
||||
SET_PROC(notifyIllegalWords);
|
||||
SET_PROC(remSelected);
|
||||
SET_PROC(getMQTTIDsFor);
|
||||
SET_PROC(timerSelected);
|
||||
#ifndef XWFEATURE_STANDALONE_ONLY
|
||||
SET_PROC(makeStreamFromAddr);
|
||||
|
|
Loading…
Reference in a new issue