mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +01:00
add util_getTraySearchLimits
This commit is contained in:
parent
b580c0b5e7
commit
9f8b53a736
1 changed files with 11 additions and 0 deletions
|
@ -131,6 +131,11 @@ typedef struct UtilVtable {
|
|||
void (*m_util_listenPortChange)( XW_UtilCtxt* uc, XP_U16 listenPort );
|
||||
#endif
|
||||
|
||||
#ifdef XWFEATURE_SEARCHLIMIT
|
||||
XP_Bool (*m_util_getTraySearchLimits)(XW_UtilCtxt* uc,
|
||||
XP_U16* min, XP_U16* max );
|
||||
#endif
|
||||
|
||||
#ifdef SHOW_PROGRESS
|
||||
void (*m_util_engineStarting)( XW_UtilCtxt* uc );
|
||||
void (*m_util_engineStopping)( XW_UtilCtxt* uc );
|
||||
|
@ -205,6 +210,12 @@ struct XW_UtilCtxt {
|
|||
(uc)->vtable->m_util_listenPortChange((uc), (port))
|
||||
#endif
|
||||
|
||||
#ifdef XWFEATURE_SEARCHLIMIT
|
||||
#define util_getTraySearchLimits(uc,min,max) \
|
||||
(uc)->vtable->m_util_getTraySearchLimits((uc), (min), (max))
|
||||
#endif
|
||||
|
||||
|
||||
# ifdef SHOW_PROGRESS
|
||||
# define util_engineStarting( uc ) \
|
||||
(uc)->vtable->m_util_engineStarting((uc))
|
||||
|
|
Loading…
Reference in a new issue