mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
type name change only
This commit is contained in:
parent
e891a26756
commit
5878ea6018
9 changed files with 22 additions and 20 deletions
|
@ -1,6 +1,6 @@
|
|||
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */
|
||||
/*
|
||||
* Copyright 1997 - 2000 by Eric House (xwords@eehouse.org). All rights reserved.
|
||||
* Copyright 1997 - 2007 by Eric House (xwords@eehouse.org). All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
@ -88,7 +88,7 @@ typedef struct BadWordInfo {
|
|||
XP_UCHAR* words[MAX_TRAY_TILES+1]; /* can form in both directions */
|
||||
} BadWordInfo;
|
||||
|
||||
typedef void (*TimerProc)( void* closure, XWTimerReason why );
|
||||
typedef void (*XWTimerProc)( void* closure, XWTimerReason why );
|
||||
|
||||
/* Platform-specific utility functions that need to be
|
||||
*/
|
||||
|
@ -129,7 +129,7 @@ typedef struct UtilVtable {
|
|||
XP_Bool (*m_util_engineProgressCallback)( XW_UtilCtxt* uc );
|
||||
|
||||
void (*m_util_setTimer)( XW_UtilCtxt* uc, XWTimerReason why, XP_U16 when,
|
||||
TimerProc proc, void* closure );
|
||||
XWTimerProc proc, void* closure );
|
||||
|
||||
void (*m_util_requestTime)( XW_UtilCtxt* uc );
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; compile-command: "make MEMDEBUG=TRUE"; -*- */
|
||||
/*
|
||||
* Copyright 2000-2006 by Eric House (xwords@eehouse.org). All rights
|
||||
* Copyright 2000-2007 by Eric House (xwords@eehouse.org). All rights
|
||||
* reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
|
@ -231,7 +231,7 @@ curses_util_engineProgressCallback( XW_UtilCtxt* XP_UNUSED(uc) )
|
|||
|
||||
static void
|
||||
curses_util_setTimer( XW_UtilCtxt* uc, XWTimerReason why, XP_U16 when,
|
||||
TimerProc proc, void* closure )
|
||||
XWTimerProc proc, void* closure )
|
||||
{
|
||||
CursesAppGlobals* globals = (CursesAppGlobals*)uc->closure;
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; compile-command: "make MEMDEBUG=TRUE"; -*- */
|
||||
/*
|
||||
* Copyright 2000-2003 by Eric House (xwords@eehouse.org). All rights reserved.
|
||||
* Copyright 2000-2007 by Eric House (xwords@eehouse.org). All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
@ -1216,7 +1216,7 @@ heartbeat_timer_func( gpointer data )
|
|||
static void
|
||||
gtk_util_setTimer( XW_UtilCtxt* uc, XWTimerReason why,
|
||||
XP_U16 XP_UNUSED_RELAY(when),
|
||||
TimerProc proc, void* closure )
|
||||
XWTimerProc proc, void* closure )
|
||||
{
|
||||
GtkAppGlobals* globals = (GtkAppGlobals*)uc->closure;
|
||||
guint newSrc;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; compile-command: "make MEMDEBUG=TRUE"; -*- */
|
||||
/*
|
||||
* Copyright 2000 by Eric House (xwords@eehouse.org). All rights reserved.
|
||||
* Copyright 2000-2007 by Eric House (xwords@eehouse.org). All rights
|
||||
* reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
@ -532,7 +533,7 @@ linux_util_makeStreamFromAddr( XW_UtilCtxt* uctx, XP_U16 channelNo )
|
|||
void
|
||||
linuxFireTimer( CommonGlobals* cGlobals, XWTimerReason why )
|
||||
{
|
||||
TimerProc proc = cGlobals->timerProcs[why];
|
||||
XWTimerProc proc = cGlobals->timerProcs[why];
|
||||
void* closure = cGlobals->timerClosures[why];
|
||||
|
||||
cGlobals->timerProcs[why] = NULL;
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
/* -*-mode: C; fill-column: 78; c-basic-offset: 4; -*- */
|
||||
/*
|
||||
* Copyright 2001 by Eric House (xwords@eehouse.org). All rights reserved.
|
||||
* Copyright 2001-2007 by Eric House (xwords@eehouse.org). All rights
|
||||
* reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU General Public License
|
||||
|
@ -114,7 +115,7 @@ struct CommonGlobals {
|
|||
/* Used only for bluetooth case */
|
||||
struct LinBtStuff* btStuff;
|
||||
|
||||
TimerProc timerProcs[NUM_TIMERS_PLUS_ONE];
|
||||
XWTimerProc timerProcs[NUM_TIMERS_PLUS_ONE];
|
||||
void* timerClosures[NUM_TIMERS_PLUS_ONE];
|
||||
|
||||
MPSLOT
|
||||
|
|
|
@ -116,7 +116,7 @@ static XP_Bool palm_util_hiliteCell( XW_UtilCtxt* uc, XP_U16 col,
|
|||
XP_U16 row );
|
||||
static XP_Bool palm_util_engineProgressCallback( XW_UtilCtxt* uc );
|
||||
static void palm_util_setTimer( XW_UtilCtxt* uc, XWTimerReason why, XP_U16 when,
|
||||
TimerProc proc, void* closure );
|
||||
XWTimerProc proc, void* closure );
|
||||
static XP_U32 palm_util_getCurSeconds( XW_UtilCtxt* uc );
|
||||
static void palm_util_requestTime( XW_UtilCtxt* uc );
|
||||
static DictionaryCtxt* palm_util_makeEmptyDict( XW_UtilCtxt* uc );
|
||||
|
@ -1543,7 +1543,7 @@ destroy_on_close( XWStreamCtxt* p_stream )
|
|||
static void
|
||||
palmFireTimer( PalmAppGlobals* globals, XWTimerReason why )
|
||||
{
|
||||
TimerProc proc = globals->timerProcs[why];
|
||||
XWTimerProc proc = globals->timerProcs[why];
|
||||
void* closure = globals->timerClosures[why];
|
||||
XP_ASSERT( TimGetTicks() >= globals->timerFireAt[why] );
|
||||
globals->timerProcs[why] = NULL;
|
||||
|
@ -3769,8 +3769,8 @@ palm_util_engineProgressCallback( XW_UtilCtxt* uc )
|
|||
|
||||
static void
|
||||
palm_util_setTimer( XW_UtilCtxt* uc, XWTimerReason why,
|
||||
XP_U16 XP_UNUSED_IR(secsFromNow),
|
||||
TimerProc proc, void* closure )
|
||||
XP_U16 secsFromNow,
|
||||
XWTimerProc proc, void* closure )
|
||||
{
|
||||
PalmAppGlobals* globals = (PalmAppGlobals*)uc->closure;
|
||||
XP_U32 now = TimGetTicks();
|
||||
|
|
|
@ -324,7 +324,7 @@ struct PalmAppGlobals {
|
|||
|
||||
struct ConnsDlgState* connState;
|
||||
|
||||
TimerProc timerProcs[NUM_TIMERS_PLUS_ONE];
|
||||
XWTimerProc timerProcs[NUM_TIMERS_PLUS_ONE];
|
||||
void* timerClosures[NUM_TIMERS_PLUS_ONE];
|
||||
XP_U32 timerFireAt[NUM_TIMERS_PLUS_ONE];
|
||||
|
||||
|
|
|
@ -109,7 +109,7 @@ static XP_Bool ce_util_hiliteCell( XW_UtilCtxt* uc, XP_U16 col,
|
|||
XP_U16 row );
|
||||
static XP_Bool ce_util_engineProgressCallback( XW_UtilCtxt* uc );
|
||||
static void ce_util_setTimer( XW_UtilCtxt* uc, XWTimerReason why, XP_U16 when,
|
||||
TimerProc proc, void* closure);
|
||||
XWTimerProc proc, void* closure);
|
||||
static void ce_util_requestTime( XW_UtilCtxt* uc );
|
||||
static XP_U32 ce_util_getCurSeconds( XW_UtilCtxt* uc );
|
||||
static DictionaryCtxt* ce_util_makeEmptyDict( XW_UtilCtxt* uc );
|
||||
|
@ -1776,7 +1776,7 @@ handleScroll( CEAppGlobals* globals, XP_S16 pos, /* only valid for THUMB* */
|
|||
static void
|
||||
ceFireTimer( CEAppGlobals* globals, XWTimerReason why )
|
||||
{
|
||||
TimerProc proc;
|
||||
XWTimerProc proc;
|
||||
void* closure;
|
||||
|
||||
proc = globals->timerProcs[why];
|
||||
|
@ -2727,7 +2727,7 @@ ce_util_engineProgressCallback( XW_UtilCtxt* XP_UNUSED(uc) )
|
|||
static void
|
||||
ce_util_setTimer( XW_UtilCtxt* uc, XWTimerReason why,
|
||||
XP_U16 XP_UNUSED_RELAY(when),
|
||||
TimerProc proc, void* closure)
|
||||
XWTimerProc proc, void* closure)
|
||||
{
|
||||
CEAppGlobals* globals = (CEAppGlobals*)uc->closure;
|
||||
XP_U32 timerID;
|
||||
|
|
|
@ -84,7 +84,7 @@ typedef struct CEAppGlobals {
|
|||
wchar_t* lastDefaultDir;
|
||||
|
||||
XP_U32 timerIDs[NUM_TIMERS_PLUS_ONE];
|
||||
TimerProc timerProcs[NUM_TIMERS_PLUS_ONE];
|
||||
XWTimerProc timerProcs[NUM_TIMERS_PLUS_ONE];
|
||||
void* timerClosures[NUM_TIMERS_PLUS_ONE];
|
||||
|
||||
XP_U16 flags; /* bits defined below */
|
||||
|
|
Loading…
Reference in a new issue