GreyActivation(突破灰色控件VC源码) 这个工具是之前写,以前玩私服很多免费挂有VIP的功能,但是各种灰色,后来就找了相关资料写出了这个工具,能突破各种灰色按钮等。
核心代码如下:
//Code By:Arvin //Arvin's Blog //DownLoad Code BOOL CALLBACK EnumChildProc(HWND hwnd,LPARAM lParam) { if(!IsWindowEnabled(hwnd)) { EnableWindow(hwnd,TRUE); } return TRUE; } void CGreyActivationDlg::OnTimer(UINT nIDEvent) { // TODO: Add your message handler code here and/or call default if (nIDEvent==130) { CString ShowText; MouseHwnd=::GetForegroundWindow(); ShowText.Format(_T("目标窗口句柄:%d"),MouseHwnd); SetDlgItemText(IDC_SHOWINFO,ShowText); //::EnumChildWindows(MouseHwnd,EnumChildProc,0); //EnumWindows( if (MouseHwnd!=0) { EnumChildWindows(MouseHwnd,EnumChildProc,NULL); } } CDialog::OnTimer(nIDEvent); }
GreyActivation(突破灰色控件VC源码+程序)下载地址:https://arvinhk.com/softdown/89798F5CB1DC917CE1040674ED7D3263.zip