能力值:
(RANK:350 )
|
-
-
2 楼
用RegisterClass对你的十六进制工具设断,将ClassName改了去,类似如下:
static TCHAR szAppName[] = TEXT ("chap231") ;
WNDCLASS wndclass ;
wndclass.style = CS_HREDRAW | CS_VREDRAW ;
wndclass.lpfnWndProc = WndProc ;
wndclass.cbClsExtra = 0 ;
wndclass.cbWndExtra = 0 ;
wndclass.hInstance = hInstance ;
wndclass.hIcon = LoadIcon (NULL, IDI_APPLICATION) ;
wndclass.hCursor = LoadCursor (NULL, IDC_ARROW) ;
wndclass.hbrBackground = (HBRUSH) GetStockObject (WHITE_BRUSH) ;
wndclass.lpszMenuName = NULL ;
wndclass.lpszClassName = szAppName ;//这里
if (!RegisterClass (&wndclass))
return 0 ;
|
能力值:
( LV2,RANK:10 )
|
-
-
3 楼
谢谢老大啊
|
能力值:
( LV13,RANK:970 )
|
-
-
4 楼
如果碰上查特征码的,就要再考虑另外一些方法
|
|
|