我想当鼠标在自定义滚动条移动时将变成一个手的形状。BOOL CXScrollBar::OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message) 
{
    if(message==WM_MOUSEMOVE)
    {
          SetCursor(::LoadCursor(NULL,IDC_HAND));
          return TRUE;
    }
    else
        return CScrollBar::OnSetCursor(pWnd, nHitTest, message);
} 直接运行:
error C2065: 'IDC_HAND' : undeclared identifier
执行 cl.exe 时出错.在source.h里加了#define IDC_HAND                        131以后:error C2664: 'LoadCursorA' : cannot convert parameter 2 from 'const int' to 'const char *'
        Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast谁能指点一下出了什么错误,小手不是系统自带的光标吗? 该怎么用? 谢谢