|
123456789101112131415 |
- #ifndef LC6_LIBCHAT6_H
- #define LC6_LIBCHAT6_H
-
- enum LIBCHAT_USER_STATUS {
- LC6_STATUS_OFFLINE = 0,
- LC6_STATUS_ONLINE,
- LC6_STATUS_AWAY,
- LC6_STATUS_TYPING
- };
-
- typedef void *LIBCHAT;
-
- LIBCHAT* libchat_init(char *path, unsigned char *password);
-
- #endif
|