ファイル
goatoh_training_android/modules/chat.mod.hsp
T
2023-08-27 02:00:35 +09:00

32 行
422 B
Plaintext

#include "./modules/http.mod.hsp"
#ifndef __CHAT__
#define __CHAT__
/**
* チャット機能を提供する.
*/
#module \
Chat
#define URL (CONFIG_SERVER_URL + "/chat.php")
/**
* チャットの送信
*
* @param str message チャット内容
* @return void
*/
#deffunc local \
Send \
str p_message
Fetch@Http URL + StrF ("?id=%d&text=%s", id.p_insId, p_message)
Return
#global
#endif ; not __CHAT__