mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
handle SysNotifyRegister manually
This commit is contained in:
parent
57d4377f7d
commit
34093a0d5b
2 changed files with 6 additions and 3 deletions
|
@ -13,7 +13,8 @@
|
||||||
# FrmSetEventHandler
|
# FrmSetEventHandler
|
||||||
# EvtAddEventToQueue
|
# EvtAddEventToQueue
|
||||||
# LstSetListChoices
|
# LstSetListChoices
|
||||||
#
|
# SysNotifyRegister
|
||||||
|
#
|
||||||
#################################################################
|
#################################################################
|
||||||
CtlEnabled
|
CtlEnabled
|
||||||
CtlGetLabel
|
CtlGetLabel
|
||||||
|
@ -147,7 +148,6 @@ StrNCompare
|
||||||
StrStr
|
StrStr
|
||||||
SysLibFind
|
SysLibFind
|
||||||
SysLibLoad
|
SysLibLoad
|
||||||
SysNotifyRegister
|
|
||||||
SysNotifyUnregister
|
SysNotifyUnregister
|
||||||
SysRandom
|
SysRandom
|
||||||
SysTicksPerSecond
|
SysTicksPerSecond
|
||||||
|
|
|
@ -26,6 +26,7 @@
|
||||||
#include <Menu.h>
|
#include <Menu.h>
|
||||||
#include <ExgMgr.h>
|
#include <ExgMgr.h>
|
||||||
#include <VFSMgr.h>
|
#include <VFSMgr.h>
|
||||||
|
#include <NotifyMgr.h>
|
||||||
|
|
||||||
#include "pnostate.h"
|
#include "pnostate.h"
|
||||||
#include "xptypes.h"
|
#include "xptypes.h"
|
||||||
|
@ -43,7 +44,9 @@ extern void FrmSetEventHandler( FormType* formP,
|
||||||
extern void EvtAddEventToQueue( const EventType* event );
|
extern void EvtAddEventToQueue( const EventType* event );
|
||||||
extern void LstSetListChoices( ListType* listP, Char** itemsText,
|
extern void LstSetListChoices( ListType* listP, Char** itemsText,
|
||||||
Int16 numItems );
|
Int16 numItems );
|
||||||
|
extern Err SysNotifyRegister( UInt16 cardNo, LocalID dbID,
|
||||||
|
UInt32 notifyType, SysNotifyProcPtr callbackP,
|
||||||
|
Int8 priority, void* userDataP );
|
||||||
|
|
||||||
#if 0
|
#if 0
|
||||||
# define FUNC_HEADER(n) XP_LOGF( #n " called" )
|
# define FUNC_HEADER(n) XP_LOGF( #n " called" )
|
||||||
|
|
Loading…
Reference in a new issue