R
rogs3210
Unregistered / Unconfirmed
GUEST, unregistred user!
void CJjkDlg::OnButton2()
{
PFLASHWINFO pfwi;
FlashWindowEx(pfwi);
}
然后出现无法识别这个函数,我是利用MFC生成的基本对话框,要加什么头文件呢?
error C2065: 'PFLASHWINFO' : undeclared identifier
: error C2146: syntax error : missing ';' before identifier 'pfwi'
: error C2065: 'pfwi' : undeclared identifier
: error C2039: 'FlashWindowEx' : is not a member of '`global namespace''
: error C2065: 'FlashWindowEx' : undeclared identifier
MSDN是这样说的:
Requirements
Client Requires Windows XP, Windows 2000 Professional, Windows Me, or Windows 98.
Server Requires Windows Server 2003 or Windows 2000 Server.
Header Declared in Winuser.h;
include Windows.h.
Library Link to User32.lib.
DLL Requires User32.dll.
{
PFLASHWINFO pfwi;
FlashWindowEx(pfwi);
}
然后出现无法识别这个函数,我是利用MFC生成的基本对话框,要加什么头文件呢?
error C2065: 'PFLASHWINFO' : undeclared identifier
: error C2146: syntax error : missing ';' before identifier 'pfwi'
: error C2065: 'pfwi' : undeclared identifier
: error C2039: 'FlashWindowEx' : is not a member of '`global namespace''
: error C2065: 'FlashWindowEx' : undeclared identifier
MSDN是这样说的:
Requirements
Client Requires Windows XP, Windows 2000 Professional, Windows Me, or Windows 98.
Server Requires Windows Server 2003 or Windows 2000 Server.
Header Declared in Winuser.h;
include Windows.h.
Library Link to User32.lib.
DLL Requires User32.dll.