这个十六进制放到变量里
DWORD = 0x0108AFD4, DebugOutCall = 0x008ADC40;
这个应该怎么写啊?
C:\Documents and Settings\49694\桌面\新建文件夹\启动.cpp(3) : error C2146: syntax error : missing ';' before identifier 'DWORD'
C:\Documents and Settings\49694\桌面\新建文件夹\启动.cpp(3) : fatal error C1004: unexpected end of file found
我就是想问 怎么把这个十六进制放到变量里
变量怎么定义?
[解决办法]
你是不是用到了windows.h或者windef.h
因为在windef.h中DWORD就是unsigned long类型
typedef unsigned long DWORD;