⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 main.cpp

📁 经典的QQ聊天源程序代码,有很大的参考价值
💻 CPP
字号:
#include <stdio.h>
#include <windows.h>
#include "qqchatwnd.h"

int main(int argc, char* argv[])
{
	HWND  hwnd = (HWND )0x000B048A ; //qq聊天窗口句柄,根据spy++查找

	CQQChatWnd  qqchatwin ;
	
	if( !qqchatwin.Attatch(hwnd) ) 
		return FALSE ;
	
	char * lpstrText = NULL ; //必须的
	
	if( !qqchatwin.GetChatText( &lpstrText )) 
		return FALSE ;
	
	delete [] lpstrText ; //数据,否则内存泄露
	
	int nSysMode = qqchatwin.GetSysMode() ;
	
	qqchatwin.ChangeSysMode( P2P_CHAT_MODE ) ;
	
	qqchatwin.SetChatText( "hello, dear ") ;

	qqchatwin.AddChatText( "hello, dear ") ;
	
	qqchatwin.Chat() ;
	
	qqchatwin.Detach( hwnd ) ;
	
	
	return 0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -