Home › Forums › C++ Programming › errors while executing vc++ code
- This topic has 1 reply, 1 voice, and was last updated 18 years, 5 months ago by KhushbooJain.
- AuthorPosts
- June 9, 2006 at 5:27 am #1941KhushbooJainParticipantHi
I have one opensource of vc++. While executing this code it is giving the following errors.
1)error C2433: ‘HWND’ : ‘inline’ not permitted on data declarations
2)error C2143: syntax error : missing ‘;’ before ‘{‘
3)error C2447: ‘{‘ : missing function header (old-style formal list?)
4)error C4430: missing type specifier – int assumed. Note: C++ does not support default-int
5)error C2086: ‘int CALLBACK’ : redefinition
If any one got these errors and knew the solution please let me know.
Thank You
angle - June 12, 2006 at 4:07 am #3195KhushbooJainParticipant
@guru wrote:
Thanks for ur reply.
Here I am posting the errors and the code where i am getting these errors with line no.
1) Error 1 error C2146: syntax error : missing ‘;’ before identifier ‘HwndMSWheel’ c:program filesmicrosoft visual studio 8vcplatformsdkincludezmouse.h 141
2)Error 2 error C2433: ‘HWND’ : ‘inline’ not permitted on data declarations c:program filesmicrosoft visual studio 8vcplatformsdkincludezmouse.h 141
3)Error 3 error C4430: missing type specifier – int assumed. Note: C++ does not support default-int c:program filesmicrosoft visual studio 8vcplatformsdkincludezmouse.h 141
4)Error 4 error C2065: ‘PUINT’ : undeclared identifier c:program filesmicrosoft visual studio 8vcplatformsdkincludezmouse.h 142
5)Error 5 error C2146: syntax error : missing ‘)’ before identifier ‘puiMsh_MsgMouseWheel’ c:program filesmicrosoft visual studio 8vcplatformsdkincludezmouse.h 142
6)Error 6 error C4430: missing type specifier – int assumed. Note: C++ does not support default-int c:program filesmicrosoft visual studio 8vcplatformsdkincludezmouse.h 142
7)Error 7 error C2059: syntax error : ‘)’ c:program filesmicrosoft visual studio 8vcplatformsdkincludezmouse.h 146
8)Error 8 error C2143: syntax error : missing ‘;’ before ‘{‘ c:program filesmicrosoft visual studio 8vcplatformsdkincludezmouse.h 148
9)Error 9 error C2447: ‘{‘ : missing function header (old-style formal list?) c:program filesmicrosoft visual studio 8vcplatformsdkincludezmouse.h 148The code is:
12345678910111213141516171819202122__inline HWND HwndMSWheel( (141)<br />PUINT puiMsh_MsgMouseWheel, (142)<br />PUINT puiMsh_Msg3DSupport,<br />PUINT puiMsh_MsgScrollLines,<br />PBOOL pf3DSupport,<br />PINT piScrollLines) (146)<br />{ (148)<br />HWND hdlMsWheel;<br />hdlMsWheel = FindWindow(MSH_WHEELMODULE_CLASS, MSH_WHEELMODULE_TITLE);<br />*puiMsh_MsgMouseWheel = RegisterWindowMessage(MSH_MOUSEWHEEL);<br />*puiMsh_Msg3DSupport = RegisterWindowMessage(MSH_WHEELSUPPORT);<br />*puiMsh_MsgScrollLines = RegisterWindowMessage(MSH_SCROLL_LINES);<br />if (*puiMsh_Msg3DSupport)<br />*pf3DSupport = (BOOL)SendMessage(hdlMsWheel, *puiMsh_Msg3DSupport, 0, 0);<br />else<br />*pf3DSupport = FALSE; // default to FALSE<br />if (*puiMsh_MsgScrollLines)<br />*piScrollLines = (int)SendMessage(hdlMsWheel, *puiMsh_MsgScrollLines, 0, 0);<br />else<br />*piScrollLines = 3; // default<br />return(hdlMsWheel);<br />}I think this will be helpful in giving suggestions and modifications.
Thanku
- AuthorPosts
- The forum ‘C++ Programming’ is closed to new topics and replies.