Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我从另一个进程中得到一个 HCURSOR。我想找到它的类型。它的资源就是这些LoadCursor。
我在 MSDN 网站上环顾四周,没有找到任何关于如何获取 HCURSOR 的资源 ID 的信息。我怎么做?
谢谢你。
你没有。游标不一定有资源 ID(例如,您可以在内存中创建游标)。
您也许可以尝试从已知资源 ID 创建游标,然后将它们与相关HCURSOR问题进行比较。(系统游标应与 一起使用LoadImage(..., LR_SHARED),因此多次调用应返回相同的句柄。)
HCURSOR
LoadImage(..., LR_SHARED)