Compare commits
1 Commits
master
...
submit/Set
Author | SHA1 | Date | |
---|---|---|---|
|
54806eabdc |
|
@ -204,13 +204,6 @@ GetCurrentClient(void)
|
|||
return currentClient;
|
||||
}
|
||||
|
||||
void
|
||||
SetInputCheck(HWEventQueuePtr c0, HWEventQueuePtr c1)
|
||||
{
|
||||
checkForInput[0] = c0;
|
||||
checkForInput[1] = c1;
|
||||
}
|
||||
|
||||
void
|
||||
UpdateCurrentTime(void)
|
||||
{
|
||||
|
|
|
@ -33,6 +33,9 @@ extern char dispatchExceptionAtReset;
|
|||
extern int terminateDelay;
|
||||
extern Bool touchEmulatePointer;
|
||||
|
||||
typedef int HWEventQueueType;
|
||||
typedef HWEventQueueType *HWEventQueuePtr;
|
||||
|
||||
extern HWEventQueuePtr checkForInput[2];
|
||||
|
||||
/* -retro mode */
|
||||
|
@ -44,6 +47,13 @@ InputCheckPending(void)
|
|||
return (*checkForInput[0] != *checkForInput[1]);
|
||||
}
|
||||
|
||||
static inline void SetInputCheck(
|
||||
HWEventQueuePtr c0, HWEventQueuePtr c1)
|
||||
{
|
||||
checkForInput[0] = c0;
|
||||
checkForInput[1] = c1;
|
||||
}
|
||||
|
||||
void ClearWorkQueue(void);
|
||||
void ProcessWorkQueue(void);
|
||||
void ProcessWorkQueueZombies(void);
|
||||
|
|
|
@ -136,13 +136,7 @@ typedef struct _TimeStamp {
|
|||
CARD32 milliseconds;
|
||||
} TimeStamp;
|
||||
|
||||
typedef int HWEventQueueType;
|
||||
typedef HWEventQueueType *HWEventQueuePtr;
|
||||
|
||||
/* dispatch.c */
|
||||
extern _X_EXPORT void SetInputCheck(HWEventQueuePtr /*c0 */ ,
|
||||
HWEventQueuePtr /*c1 */ );
|
||||
|
||||
extern _X_EXPORT void UpdateCurrentTime(void);
|
||||
|
||||
extern _X_EXPORT void UpdateCurrentTimeIf(void);
|
||||
|
|
Loading…
Reference in New Issue