本文介绍了错误C2061:语法错误:标识符'LPINPUT'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



在VS 2008中编译C ++ dll项目时,出现以下错误

Hi,

While compiling a C++ dll project in VS 2008 i am getting the following error

error C2061: syntax error : identifier ''LPINPUT''



此错误源自winuser.h


原因是什么?



This error originates from winuser.h


What would be the reason ?

推荐答案

proper include

You have to include WinAble.h not WinUser.h



另请参见 http://msdn.microsoft.com/en-us/library /ms646270(v=vs.85).aspx [ ^ ].

你是说这个宣言吗? 我不能100%确定您的代码,因为您没有显示任何内容.

—SA



See also http://msdn.microsoft.com/en-us/library/ms646270(v=vs.85).aspx[^].

Do you mean this declaration? I cannot be 100% sure as you did not show nothing from you code.

—SA



这篇关于错误C2061:语法错误:标识符'LPINPUT'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 01:00