1

我想使用 C++ 获取鼠标图像。我使用了从
How to get mouse cursor icon VS c++ question 中获得的代码。我使用了 Visual Studio 2010 IDE。我创建了一个 c++ win32 项目并将该代码片段输入到 _tmain 方法中,并且还添加了缺失的结构(CURSORINFO 和 ICONINFO)。构建项目后,错误控制台显示

error C2664: 'GetCursorInfo' : cannot convert parameter 1 from 'CURSORINFO *' to 'PCURSORINFO'

这个构建错误的原因是什么。你可以解释吗?这是我构建的代码。

#include "stdafx.h"
#include <windows.h>

int _tmain(int argc, _TCHAR* argv[])
{
    typedef struct _ICONINFO {
        BOOL    fIcon;
        DWORD   xHotspot;
        DWORD   yHotspot;
        HBITMAP hbmMask;
        HBITMAP hbmColor;
    } ICONINFO, *PICONINFO;

    typedef struct {
        DWORD   cbSize;
        DWORD   flags;
        HCURSOR hCursor;
        POINT   ptScreenPos;
    } CURSORINFO, *PCURSORINFO, *LPCURSORINFO;


    HDC hdcScreen = GetDC(NULL);
    HDC hdcMem = CreateCompatibleDC(hdcScreen);

    CURSORINFO cursorInfo = { 0 };
    cursorInfo.cbSize = sizeof(cursorInfo);

    if (::GetCursorInfo(&cursorInfo))
    {
        ICONINFO ii = {0};
        GetIconInfo(cursorInfo.hCursor, &ii);
        DeleteObject(ii.hbmColor);
        DeleteObject(ii.hbmMask);
        ::DrawIcon(hdcMem, cursorInfo.ptScreenPos.x - ii.xHotspot, cursorInfo.ptScreenPos.y -          ii.yHotspot, cursorInfo.hCursor);
    }
    return 0;
}
4

1 回答 1

3

不要重新定义struct在 Windows SDK 标头中声明的 s。这可能是导致错误的原因。

基本上添加这个:

#include <Windows.h> // includes WinUser.h

除非那已经在stdafx.h. 如果是,请删除您自己typedef的 s。

于 2012-07-10T14:40:14.857 回答