WindowProc的问题
我在网上找了一个控制USB的软件其中有一段
LRESULT CTest05Dlg::WindowProc(UINT message, WPARAM wParam, LPARAM lParam)
{
// TODO: Add your specialized code here and/or call the base class
if (message==0x405)
{
UpdateData(false);
}
return CDialog::WindowProc(message, wParam, lParam);
}
请问WindowProc是有什么用的?和message的代码是在哪里查到?