すくすくゴートうちゃん Android 版(黒歴史)
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.

32 lines
422 B

  1. #include "./modules/http.mod.hsp"
  2. #ifndef __CHAT__
  3. #define __CHAT__
  4. /**
  5. * チャット機能を提供する.
  6. */
  7. #module \
  8. Chat
  9. #define URL (CONFIG_SERVER_URL + "/chat.php")
  10. /**
  11. * チャットの送信
  12. *
  13. * @param str message チャット内容
  14. * @return void
  15. */
  16. #deffunc local \
  17. Send \
  18. str p_message
  19. Fetch@Http URL + StrF ("?id=%d&text=%s", id.p_insId, p_message)
  20. Return
  21. #global
  22. #endif ; not __CHAT__