This commit is contained in:
chombier 2001-10-06 10:34:55 +00:00
parent 6ac325eff8
commit d7e91d1a17
2 changed files with 2 additions and 3 deletions

View File

@ -39,7 +39,6 @@ int dup(int s);
int socket(int domain, int type, int protocol);
int close(int s);
void ssh2_doevent(long sleepTime);
void add_one_file(struct lshcontext *context, int fd);
void remove_one_file(struct lshcontext *context, int fd);

View File

@ -23,7 +23,7 @@ char *getprefsd(char *name, char *buf, size_t size, short *vRefNum, long *dirID)
void ssh2_sched();
void ssh2_doevent(long sleepTime);
void ssh2_doevent(EventRecord *theEvent, long sleepTime);
#ifdef __cplusplus
}
@ -306,5 +306,5 @@ void ssh2_sched()
void GUSIHandleNextEvent(long sleepTime)
{
ssh2_doevent(sleepTime);
ssh2_doevent(NULL, sleepTime);
}