Files
mir_server/server/LogicServer/base/SaveChatMsg.h

16 lines
331 B
C
Raw Normal View History

2025-01-09 17:45:40 +08:00
#pragma once
//保存聊天信息到文本
#ifndef OUTPUTCALL
#define OUTPUTCALL __stdcall
#endif
//聊天消息输出函数
INT_PTR OUTPUTCALL OutPutChatMsg(LPCTSTR channelName,LPCTSTR userName, LPCTSTR strMsg);
//初始化
INT_PTR OUTPUTCALL InitChatMsgOut();
//清除聊天消息
INT_PTR OUTPUTCALL ClearChatMsgOut();