You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
279 B

#ifndef __POLLER_H__
#define __POLLER_H__
// dummy poller
struct poller {
int blocked:1;
int connected:1;
int error:1;
int intro:1;
};
void poller_blocked(struct poller *, int);
int poller_isblocked(struct poller *, int);
void poller_error(struct poller *, int);
#endif