示例#1
0
EXPORT int libqq_getmessage( qqclient* qq, char* buf, int size, int wait )
{
	int ret;
	ret = qqclient_get_event( qq, buf, size, wait );
	utf8_to_gb( buf, buf, size );
	return ret;
}
示例#2
0
文件: webqq.c 项目: PythonYXY/myqq3
EXPORT int webqq_recv_msg( user* u, char* buf, int size, int wait )
{
	int ret;
	ret = qqclient_get_event( u->qq, buf, size, wait );
	return ret;
}