A library for a decentralised peer-to-peer chat over IPv6 only.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

libchat6.h 280B

123456789101112131415
  1. #ifndef LC6_LIBCHAT6_H
  2. #define LC6_LIBCHAT6_H
  3. enum LIBCHAT_USER_STATUS {
  4. LC6_STATUS_OFFLINE = 0,
  5. LC6_STATUS_ONLINE,
  6. LC6_STATUS_AWAY,
  7. LC6_STATUS_TYPING
  8. };
  9. typedef void *LIBCHAT;
  10. LIBCHAT* libchat_init(char *path, unsigned char *password);
  11. #endif