mirror of https://github.com/macssh/macssh.git
added EventRecord optional parameter to DoEvents
This commit is contained in:
parent
cb5735db85
commit
a9846bebc4
|
@ -11,7 +11,7 @@ void NoWindow(void);
|
|||
Boolean CheckPageKeys(short code);
|
||||
void SendOneChar(unsigned char sendch);
|
||||
void HandleKeyDown(EventRecord theEvent,struct WindRec *tw);
|
||||
void DoEvents(void);
|
||||
void DoEvents(EventRecord*);
|
||||
void CloseAWindow(WindowPtr theWindow);
|
||||
void HandleRemapping(unsigned char *ascii, Boolean *commanddown,
|
||||
Boolean *controldown,Boolean *optiondown, unsigned char *code);//BUGG make it static
|
||||
|
|
|
@ -107,7 +107,7 @@ void main(void)
|
|||
|
||||
do { /* BYU - Do this forever */
|
||||
UnloadSegments();
|
||||
DoEvents();
|
||||
DoEvents(NULL);
|
||||
ssh2_sched();
|
||||
if (!TelInfo->done) {
|
||||
DoNetEvents();
|
||||
|
|
Loading…
Reference in New Issue