libSystem/include/appclient.h
2005-08-28 01:04:10 +00:00

22 lines
325 B
C

/* appclient.h */
#ifndef _APPCLIENT_H
# define _APPCLIENT_H
# include "event.h"
/* AppClient */
/* types */
typedef struct _AppClient AppClient;
/* functions */
AppClient * appclient_new(void);
AppClient * appclient_new_event(Event * event);
void appclient_delete(AppClient * appclient);
#endif /* !_APPCLIENT_H */